我刚刚将我的 chrome 扩展更新为 json 版本 2,并试图让我的扩展再次工作。问题是 sendRequest 在此过程中被贬值了。所以我将https://developer.chrome.com/extensions/messaging.html中的代码复制 到我的脚本中,并将其修改为我自己的变量名,它不起作用。
所以然后我回去输入原始代码,它仍然不起作用。我已经阅读了多个类似的问题[希望这不会因为重复而被关闭,因为它们都与我的情况不同]。
清单.json:
{
"background": {
"page": "background.html"
},
... ... ...
"content_scripts": [ {
"css": [ "style.css" ],
"js": [ "jq.js", "script.js" ],
"matches": [ "http://*.craigslist.org/*/*.htm*" ]
} ],
... ... ...
"permissions": [ "tabs", "http://*.craigslist.org/*/*.htm*" ],
"manifest_version": 2,
"update_url": "http://clients2.google.com/service/update2/crx",
"version": "3.0"
}
背景.html:
<html>
<script type='text/javascript'>
chrome.runtime.onMessage.addListener(
function(request, sender, sendResponse) {
console.log(sender.tab ?
"from a content script:" + sender.tab.url :
"from the extension");
if (request.greeting == "hello")
sendResponse({farewell: "goodbye"});
});
});
</script>
</html>
脚本.js:
chrome.runtime.sendMessage({greeting: "hello"}, function(response) {
console.log(response.farewell);
});
现在我运行一个页面 [on craigslist],然后转到控制台,这是错误:
Port error: Could not establish connection. Receiving end does not exist.
TypeError: Cannot read property 'farewell' of undefined
at chrome-extension://dhmjefbokfkjpdbigkadjpgjeflchgea/script.js:9:23
我在 Ubuntu 12.10 64 位上使用 Chrome Beta (Google Chrome:27.0.1453.15(官方版本 191758)测试版)