我的contentscript.js:
chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
if (request.ask === "selectedtext"){
sendResponse({selectedtext: window.getSelection().toString()});
}
});
我的background.js:
function onClickHandler(info, tab) {
chrome.tabs.sendMessage(tab.id, {ask: "selectedtext"}, function(response) {
console.log(response.selectedtext);
});
};
chrome.contextMenus.onClicked.addListener(onClickHandler);
chrome.runtime.onInstalled.addListener(function() {
var contexts = ["selection"];
for (var i = 0; i < contexts.length; i++){
var context = contexts[i];
var title = "send the word to background.js";
var id = chrome.contextMenus.create({"title": title, "contexts":[context],"id": "context1" + context});
}
});
更新:
{
"name" : "Send Data Plugin",
"version" : "1.1",
"description" : "A trivial usage example.",
"permissions": [
"browsingData", "contextMenus", "http://chromeplugin.sites.djangoeurope.com/"
],
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"background": {
"persistent": false,
"scripts": ["background.js"]
},
"manifest_version": 2,
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["contentscript.js"]
}]
}
但是,一旦我点击contextMenu send the word to background.js
,我就会在控制台中收到错误:
Stack trace: TypeError: Cannot read property 'selectedtext' of undefined
我在做错了什么?我用谷歌搜索并在这里读了一些q&amp; a's,但似乎都没有帮助......
答案 0 :(得分:2)
您的错误意味着您的回复未定义。即没有数据从上下文页面返回。
你的content.js看起来不错,我认为最有可能的是没有内容脚本从另一端进行通信。在您的内容脚本中放入console.log并确保它被击中。
您可能只需要刷新与之通信的页面,因为内容脚本可能不是当前的脚本?