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 に答える