diff options
Diffstat (limited to 'src/content/index.js')
-rw-r--r-- | src/content/index.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/content/index.js b/src/content/index.js index be01089..0e4f7e1 100644 --- a/src/content/index.js +++ b/src/content/index.js @@ -39,6 +39,10 @@ const execOperation = (operation) => { return navigates.historyPrev(window); case operations.NAVIGATE_HISTORY_NEXT: return navigates.historyNext(window); + case operations.NAVIGATE_LINK_PREV: + return navigates.linkPrev(window); + case operations.NAVIGATE_LINK_NEXT: + return navigates.linkNext(window); } }; |