Set initial hotkey combos

This commit is contained in:
ortiza5 2021-03-11 12:54:04 -07:00
parent eac670f3ea
commit cd89ac2660

View File

@ -2,12 +2,15 @@ chrome.runtime.onInstalled.addListener(function () {
let settings = { let settings = {
hotkeys: { hotkeys: {
codes: { codes: {
slower: ["F21"], navUp: ["w"],
normal: ["F22"], navLeft: ["a"],
faster: ["F23"], navDown: ["s"],
pause: ["k"], navRight: ["d"],
"skip-back": ["ArrowLeft"], expand: ["e"],
"skip-forward": ["ArrowRight"], quit: ["q"],
click: ["enter"],
shiftClick: ["shift", "enter"],
disableKeys: ["control", "shift", "x"],
}, },
}, },
}; };