- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经为 Firefox(52.2.1 32 位)构建了一个小型 WebExtension,主要基于 example provided by the Mozilla Developers Network 。它是一个上下文菜单,允许用户复制多个文本(通过选择相应的文本,然后选择上下文菜单中的按钮之一)并最终将它们组合(以某种方式)在剪贴板中以供进一步使用。
扩展程序运行得很好,但现在单独选择和复制的文本突然被限制为 150 个字符,所有选择的内容都会被切断。什么可能导致这种行为?
到目前为止,我找不到任何文档或论坛表明 selectionText仅存储 150 个字符。
这是将任何选定的文本复制到局部变量的方式:
browser.contextMenus.onClicked.addListener(function(info, tab) {
if (info.menuItemId == "save-title") {
title = info.selectionText;
}
});
其余代码与上面链接的示例基本相同:
browser.contextMenus.onClicked.addListener(function(info, tab) {
if (info.menuItemId == "export-to-clipboard") {
const content = title + "\t" + date + "\t" + author + "\t\t" + abstract;
const code = "copyToClipboard(" +
JSON.stringify(content) + ");";
browser.tabs.executeScript({
code: "typeof copyToClipboard === 'function';",
}).then(function(results) {
// The content script's last expression will be true if the function
// has been defined. If this is not the case, then we need to run
// clipboard-helper.js to define function copyToClipboard.
if (!results || results[0] !== true) {
return browser.tabs.executeScript(tab.id, {
file: "clipboard-helper.js",
});
}
}).then(function() {
return browser.tabs.executeScript(tab.id, {
code,
});
}).catch(function(error) {
// This could happen if the extension is not allowed to run code in
// the page, for example if the tab is a privileged page.
console.error("Failed to copy text: " + error);
});
title = "";
date = "";
author = "";
abstract = "";
}
});
并且,为了包含此处的所有内容,clipboard-helper.js:
/* Copy-paste from https://github.com/mdn/webextensions-examples/blob/master/context-menu-copy-link-with-types/clipboard-helper.js */
// This function must be called in a visible page, such as a browserAction popup
// or a content script. Calling it in a background page has no effect!
function copyToClipboard(text) {
function oncopy(event) {
document.removeEventListener("copy", oncopy, true);
// Hide the event from the page to prevent tampering.
event.stopImmediatePropagation();
// Overwrite the clipboard content.
event.preventDefault();
event.clipboardData.setData("text/plain", text);
}
document.addEventListener("copy", oncopy, true);
// Requires the clipboardWrite permission, or a user gesture:
document.execCommand("copy");
}
最佳答案
此问题已在 Firefox 56 中修复,请参阅: https://bugzilla.mozilla.org/show_bug.cgi?id=1338898
关于javascript - 火狐网络扩展 : selectionText in contextMenus only returns 150 characters,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45550560/
这个问题已经有答案了: Pass a parameter to a content script injected using chrome.tabs.executeScript() (4 个回答)
google-chrome-extension 我在尝试构建扩展时遇到问题。 我想允许用户在某个选项卡中突出显示一个词,并通过调用翻译器网页在另一个窗口中获取该词的翻译。 我目前所拥有的和工作的部分,
我已经为 Firefox(52.2.1 32 位)构建了一个小型 WebExtension,主要基于 example provided by the Mozilla Developers Networ
我正在开发一个 chrome 扩展,其功能与在新选项卡中打开几乎相同,但“在新选项卡中打开”显然不允许打开内部网文件的链接,例如 file://由于 chrome security reasons .
我是一名优秀的程序员,十分优秀!