From cd89ac2660ea614a748f89dcee55b6898b997fe9 Mon Sep 17 00:00:00 2001 From: ortiza5 <43008712+ortiza5@users.noreply.github.com> Date: Thu, 11 Mar 2021 12:54:04 -0700 Subject: [PATCH] Set initial hotkey combos --- js/background.js | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/js/background.js b/js/background.js index 19095c3..a064d0f 100644 --- a/js/background.js +++ b/js/background.js @@ -2,12 +2,15 @@ chrome.runtime.onInstalled.addListener(function () { let settings = { hotkeys: { codes: { - slower: ["F21"], - normal: ["F22"], - faster: ["F23"], - pause: ["k"], - "skip-back": ["ArrowLeft"], - "skip-forward": ["ArrowRight"], + navUp: ["w"], + navLeft: ["a"], + navDown: ["s"], + navRight: ["d"], + expand: ["e"], + quit: ["q"], + click: ["enter"], + shiftClick: ["shift", "enter"], + disableKeys: ["control", "shift", "x"], }, }, };