Chrome扩展程序清单错误:content_script [0]。匹配[0]

时间:2012-11-17 11:57:45

标签: google-chrome google-chrome-extension content-script

我相信这可能是问题所在:

"content_scripts" : [
    {
      "matches" : [
        "http://195.88.55.16"
      ],
      "js" : ["script.js"],
      "run_at" : "document_idle",
      "all_frames" : false
    }

1 个答案:

答案 0 :(得分:1)

您需要在matches部分的主机上附加斜杠(可能是斜线+星号),以使模式有效。

  "matches" : [
    "http://195.88.55.16/*"
  ],

有关详细信息,请查看match patterns的文档:

  

以下是基本语法:

<url-pattern> := <scheme>://<host><path>
<scheme> := '*' | 'http' | 'https' | 'file' | 'ftp' | 'chrome-extension'
<host> := '*' | '*.' <any char except '/' and '*'>+
<path> := '/' <any chars>