【发布时间】:2012-07-29 22:35:47
【问题描述】:
我是 Chrome 扩展程序的新手。我正在尝试在内容脚本和 background.html 页面之间进行通信。 background.html 向内容脚本发送请求“hello”,内容脚本应以“hello background”警报响应.但它只是没有发生。我的 background.html 代码是:
function testRequest() {
chrome.tabs.getSelected(null, function(tab) {
chrome.tabs.sendRequest(tab.id, {greeting: "hello"});
});
}
content.js 代码:
chrome.extension.onMessage.addListener(
function(request, sender, sendResponse) {
if (request.greeting == "hello")
alert("hello background");
}
);
popup.html 代码:
<!doctype html>
<html>
<head></head>
<body>
<form>
<input type="button" value="sendMessage" onclick="testRequest()" />
</form>
</body>
</html>
manifest.json:
{
"browser_action": {
"default_icon": "icon.png",
"popup": "popup.html"
},
"background": {
"page": "background.html"
},
"permissions": [
"tabs",
"http://*/*",
"https://*/*",
"notifications",
"contextMenus"
],
"content_scripts": [
{
"matches": ["http://*/*","https://*/*"],
"js": ["content.js"]
}
],
"name": "FirstExtension",
"version": "1.0"
}
请帮忙!
【问题讨论】:
标签: javascript google-chrome-extension content-script