📜  chrome 扩展将样式表添加到页面 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:25.131000             🧑  作者: Mango

代码示例1
//Add this to manifest.json

"content_scripts": [
   {
      "matches":    ["http://www.google.com/*"],
      "css":        ["stylesheet.css"],
   }
],