aboutsummaryrefslogtreecommitdiff
path: root/src/content
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
parentf484fda718d86603bee0c739f54a6156a012162a (diff)
open clipboard's URL in current/new tab
Diffstat (limited to 'src/content')
-rw-r--r--src/content/actions/operation.js2
-rw-r--r--src/content/urls.js26
2 files changed, 27 insertions, 1 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,
diff --git a/src/content/urls.js b/src/content/urls.js
index 8f8a1ac..9b7b284 100644
--- a/src/content/urls.js
+++ b/src/content/urls.js
@@ -1,3 +1,5 @@
+import messages from 'shared/messages';
+
const yank = (win) => {
let input = win.document.createElement('input');
win.document.body.append(input);
@@ -12,4 +14,26 @@ const yank = (win) => {
input.remove();
};
-export { yank };
+const paste = (win, newTab) => {
+ let textarea = win.document.createElement('textarea');
+ win.document.body.append(textarea);
+
+ textarea.style.position = 'fixed';
+ textarea.style.top = '-100px';
+ textarea.contentEditable = 'true';
+ textarea.focus();
+
+ if (win.document.execCommand('paste')) {
+ if (/^(https?|ftp):\/\//.test(textarea.textContent)) {
+ browser.runtime.sendMessage({
+ type: messages.OPEN_URL,
+ url: textarea.textContent,
+ newTab: newTab ? newTab : false,
+ });
+ }
+ }
+
+ textarea.remove();
+};
+
+export { yank, paste };