更改Chrome扩展程序中的页面样式表

时间:2011-07-31 18:26:47

标签: javascript google-chrome-extension

我尝试制作一个更改页面样式表的扩展程序。我改变了一些像背景颜色的样式,但我不能改变整个样式表

manifest.json 文件

{
  "name": "change stylesheet",
  "version": "1.0",
  "permissions": [
    "tabs", "http://*/*", "https://*/*"
  ],
  "browser_action": {
      "default_title": "Set this page's style",
      "default_icon": "icon.png",
      "popup": "popup.html"
  }
}

java脚本在popup.htm中调用的部分

function click() {
  chrome.tabs.executeScript(null,
      {code:"document.getElementById('stylesheet').href = 'style1.css'"});
  window.close();
}

1 个答案:

答案 0 :(得分:7)

Susantha - 你只需要在你的清单中包含你的css文件:

http://code.google.com/chrome/extensions/content_scripts.html

{
"name": "My extension",
 ...
  "content_scripts": [
{
  "matches": ["http://www.google.com/*"],
  "css": ["mystyles.css"],
  "js": ["jquery.js", "myscript.js"]
}
 ],
  ...
 }

您需要使用!important覆盖现有样式,并按照通常的方式遵循样式的先例。如果有内联样式,则可能需要使用js代码重写它。