我正在尝试执行一个脚本,在单击chrome扩展时操作页面的html。 (没有弹出窗口)
问题是我无法获得警报(“测试”)(位于content.js中)。我做错了什么?
的manifest.json
{
"name": "test",
"version": "1.0",
"manifest_version" :2,
"description": "test",
"browser_action" : {
"default_icon" :"icon.png"
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["http://*/*","https://*/*"],
"js": ["content.js"]
}],
"permissions": [
"http://*/*",
"https://*/*",
"contextMenus",
"tabs"
]
}
background.js
chrome.browserAction.onClicked.addListener(function(tab) {
chrome.tabs.sendMessage(tab.id, {
'action': 'SwapNameAndSurname',
'data' : {'Name' : 'John', 'Surname' : 'Doe'}
});
});
content.js
chrome.runtime.onMessage.addListener(
function(request, sender, sendResponse) {
alert("test");
console.log(sender.tab ?
"from a content script:" + sender.tab.url :
"from the extension");
if (request.greeting == "hello")
sendResponse({farewell: "goodbye"});
});
答案 0 :(得分:1)
我在这上停留了一段时间。
刷新扩展名和页面即可完成工作。