1

Chrome 拡張機能は初めてですが、コンテンツ スクリプトに関して質問があります。

ユーザーが特定のドメインにアクセスした場合は特定の js ファイルを実行し、別のドメインにアクセスした場合は別の js ファイルを実行したいと考えています。

私の質問は、manifest.json ファイル内でこれを行うにはどうすればよいですか?

これは私がこれまでに持っているものです:

    "content_scripts": 
         [{"matches": ["http://store.example.com/*"], "js": ["store.js"]}], 
         [{"matches": ["https://purchase.example.com/*"], "js": ["purchase.js"]}]

    "permissions":["tabs", "http://store.example.com/*"]

しかし、エラーが発生し続けます。ありがとうございました!!

4

1 に答える 1

2

content_scripts 宣言の形式が正しくありません。これを試して:

"content_scripts": [
    {"matches": ["http://store.example.com/*"], "js": ["store.js"]},
    {"matches": ["https://purchase.example.com/*"], "js": ["purchase.js"]}
],
于 2013-06-18T04:27:34.110 に答える