我有这个简单的扩展,它在chrome工具栏上显示图标并显示启用/禁用按钮。我想在按钮上添加功能以禁用或启用访问Google网站时触发的content_script.js
:
popup.js
var setLayout = function(){
var list = document.createElement('ul');
var enable = document.createElement('li');
enable.appendChild(document.createTextNode('Enable Script'));
enable.onclick = function(){toggle(0)};
var disable = document.createElement('li');
disable.appendChild(document.createTextNode('Disable Script'));
disable.onclick = function(){toggle(1)};
list.appendChild(disable);
document.body.appendChild(list);
function toggle(n){
list.removeChild( n == 0 ? enable : disable);
list.appendChild(n == 0 ? disable : enable);
}
};
document.addEventListener('DOMContentLoaded', setLayout, false);
的manifest.json
{
"manifest_version": 2,
"name": "test",
"description": "test",
"version": "1.0",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["https://www.google.co.uk/"],
"js": ["content_scripts.js"]
}
]
}
content_scripts.js
(function(){
alert('hello');
})();
我是谷歌扩展的新手并且不知道如何做到这一点,我想在点击禁用/启用按钮后更改显示,但在阅读谷歌网站上的文档后无法找到正确的命令!
任何帮助都会受到高度赞赏。
答案 0 :(得分:2)
经过一些研究后,我想出了如何使用backround pages
,sendMessage
和localstorage
解决此问题。
background pages
作为popup.js
和content_scripts.js
之间的沟通者,它们位于两个不同的文档中,并且不可能直接在它们之间传递变量。
要在mamifest中启用后台页面,我添加了:
"background": {
"scripts": ["background.js"],
"persistent": true
},
localstorage
在本地保存变量,即使在浏览器关闭并再次打开时也要记住它们,所以当点击启用/禁用按钮时,设置localStorage['status'] = 1/0
可通过background.js
访问传递给content_scripts.js
。
设置我添加到popup.js
的localStorage变量:
if(!localStorage.status) localStorage['status'] = 1;
toggle(2);
enable.onclick = function(){toggle(0)};
disable.onclick = function(){toggle(1)};
function toggle(n){
if((n == 0) && (enable.parentNode == list)){
list.removeChild(enable);
list.appendChild(disable);
localStorage.status = 1;
}else if((n == 1) && (disable.parentNode == list)){
list.removeChild(disable);
list.appendChild(enable);
localStorage.status = 0;
}else if((n == 2) && (!list.hasChildNodes())){
list.appendChild((localStorage.status == 1) ? disable : enable);
chrome.browserAction.setIcon({path: (localStorage.status == 1) ? "icons/icon19.png" : "icons/icon19_disabled.png"});
}else{
return;
}
}
要将localStorage.status
传递给content_scripts.js
,我必须在sendMessage
上使用content_scrips.js
,其中background.js
已加载发送请求消息,onMessage
在background.js
上收听请求并向content_scripts.js
发送localStorage.status
值的回复。
background.js:
chrome.runtime.onMessage.addListener(
function(request, sender, sendResponse) {
if (request.type == "status") sendResponse({status: localStorage.status});
});
content_scripts.js
var fn = function(){...};
chrome.runtime.sendMessage({type: "status"}, function(response) {
if(response.status == 1) fn();
return;
});
就是这样,希望有人觉得它很有用。
答案 1 :(得分:1)
尝试injecting the content script使用代码而不是清单文件,如下所示:
chrome.tabs.executeScript(null, {file: "content_script.js"});
然后,您可以在后台页面和内容脚本之间使用message passing来决定是否注入内容脚本,或者也可以在内容脚本本身中使用if语句,该语句仅在由扩展程序的操作按钮。
您可以使用browser action event来检测何时按下操作按钮。