Chrome扩展程序:不会注入CSS文件

时间:2013-08-05 23:59:13

标签: google-chrome google-chrome-extension

我正在尝试编写一个使用CSS文件的chrome扩展程序,但它不会被注入。清单文件非常简单

{
  "manifest_version": 2,

  "name": "Youtube Embed Performance",
  "description": "",
  "version": "1.0",

  "permissions": ["https://redcursor.net/channels/18181"],

  "content_scripts": [
    {
      "matches" : ["https://redcursor.net/channels/18181"],
      "css"     : ["youtube.css"],
      "js"      : ["youtube.js"],
      "run_at"  : "document_start"
    }
  ]

}

该脚本作为我的扩展的一部分出现在Sources选项卡中(并被执行)。 CSS不会出现在那里。

0 个答案:

没有答案