0

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

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

1 回答 1

1

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

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

有关更多信息,请查看匹配模式的文档:

这是基本语法:

<url-pattern> := <scheme>://<host><path>
<scheme> := '*' | 'http' | 'https' | 'file' | 'ftp' | 'chrome-extension'
<host> := '*' | '*.' <any char except '/' and '*'>+
<path> := '/' <any chars>
于 2012-11-17T11:59:52.160 回答