如何使用浏览器操作按钮在页面中切换脚本/内容?
示例:
答案 0 :(得分:3)
哦,刚刚找到答案。
http://code.google.com/chrome/extensions/content_scripts.html#pi
/* in background.html */
chrome.browserAction.onClicked.addListener(function(tab) {
chrome.tabs.executeScript(null,
{code:"document.body.bgColor='red'"});
});
/* in manifest.json */
"permissions": [
"tabs", "http://*/*"
],