diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-21 19:40:22 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-21 19:40:22 +0900 |
commit | dc6d93c1da28ed17fe1bc5be07bdfab30a40dd66 (patch) | |
tree | 8c1474bf6b4999a59db789d3b00ed455f5411f6a /src/content/actions | |
parent | 59f7ef205df4750063c755a7b8834bfd7509da83 (diff) |
enable/disable addon by keys
Diffstat (limited to 'src/content/actions')
-rw-r--r-- | src/content/actions/operation.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/content/actions/operation.js b/src/content/actions/operation.js index 81bcc2f..897f361 100644 --- a/src/content/actions/operation.js +++ b/src/content/actions/operation.js @@ -4,9 +4,16 @@ import * as scrolls from 'content/scrolls'; import * as navigates from 'content/navigates'; import * as urls from 'content/urls'; import * as consoleFrames from 'content/console-frames'; +import * as addonActions from './addon'; const exec = (operation) => { switch (operation.type) { + case operations.ADDON_ENABLE: + return addonActions.enable(); + case operations.ADDON_DISABLE: + return addonActions.disable(); + case operations.ADDON_TOGGLE_ENABLED: + return addonActions.toggleEnabled(); case operations.SCROLL_VERTICALLY: return scrolls.scrollVertically(window, operation.count); case operations.SCROLL_HORIZONALLY: |