我创建了一个小的 HelloWorld 扩展,并能够让它在 Firefox 31(TorBrowser 所基于的)中工作。但是我无法让它在 TorBrowser 中工作。知道为什么会这样以及如何解决吗?这是我的 main.js
var contextMenu = require("sdk/context-menu");
var menuItem = contextMenu.Item({
label: "Log Selection",
context: contextMenu.SelectionContext(),
contentScript: 'self.on("click", function () {' +
' var text = window.getSelection().toString();' +
' self.postMessage(text);' +
'});',
onMessage: function (selectionText) {
console.log(selectionText);
}
});
上下文菜单项显示在 FF 但不是 TB。