aboutsummaryrefslogtreecommitdiff
path: root/src/content/actions
diff options
context:
space:
mode:
authorusk <usk@>2018-01-03 07:19:25 +0900
committerusk <usk@>2018-01-03 07:34:41 +0900
commit54a7662cd1e7372910e9ce81aae1a904f3b26c82 (patch)
tree36ffce8107cb7242b540d88cf4f4d4db709de3af /src/content/actions
parentf484fda718d86603bee0c739f54a6156a012162a (diff)
open clipboard's URL in current/new tab
Diffstat (limited to 'src/content/actions')
-rw-r--r--src/content/actions/operation.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/content/actions/operation.js b/src/content/actions/operation.js
index 767f14b..0a5cd97 100644
--- a/src/content/actions/operation.js
+++ b/src/content/actions/operation.js
@@ -60,6 +60,8 @@ const exec = (operation) => {
type: messages.CONSOLE_SHOW_INFO,
text: 'Current url yanked',
});
+ case operations.URLS_PASTE:
+ return urls.paste(window, operation.newTab ? operation.newTab : false);
default:
browser.runtime.sendMessage({
type: messages.BACKGROUND_OPERATION,