58 lines
2.1 KiB
JavaScript
58 lines
2.1 KiB
JavaScript
/*
|
|
* ClearURLs
|
|
* Copyright (c) 2017-2020 Kevin Röbert
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/*jshint esversion: 6 */
|
|
/*
|
|
* This script is responsible for context menu cleaning functions
|
|
* and based on: https://github.com/mdn/webextensions-examples/tree/master/context-menu-copy-link-with-types
|
|
*/
|
|
|
|
function contextMenuStart() {
|
|
if(storage.contextMenuEnabled) {
|
|
browser.contextMenus.create({
|
|
id: "copy-link-to-clipboard",
|
|
title: translate("clipboard_copy_link"),
|
|
contexts: ["link"]
|
|
});
|
|
|
|
browser.contextMenus.onClicked.addListener((info, tab) => {
|
|
if (info.menuItemId === "copy-link-to-clipboard") {
|
|
const url = pureCleaning(info.linkUrl);
|
|
const code = "copyToClipboard(" +
|
|
JSON.stringify(url)+");";
|
|
|
|
browser.tabs.executeScript({
|
|
code: "typeof copyToClipboard === 'function';",
|
|
}).then((results) => {
|
|
if (!results || results[0] !== true) {
|
|
return browser.tabs.executeScript(tab.id, {
|
|
file: "/external_js/clipboard-helper.js",
|
|
}).catch(handleError);
|
|
}
|
|
}).then(() => {
|
|
return browser.tabs.executeScript(tab.id, {
|
|
code,
|
|
});
|
|
}).catch((error) => {
|
|
console.error("Failed to copy text: " + error);
|
|
});
|
|
}
|
|
});
|
|
}
|
|
}
|