#実現させたいこと
新しいタブ(chrome://newtab)を開いたときにcontent_scripts
で指定をしたjsを動かしたいです。
#行ったこと
manifest.jsonで
json
1{ 2 "manifest_version": 2, 3 "name":"テスト", 4 "short_name":"テスト", 5 "version":"1.0.0", 6 "description":"hoge", 7 "icons":{ 8 "128": "icon128.png" 9 }, 10 "browser_action": { 11 "default_icon": "icon128.png", 12 "default_title": "てすと", 13 "default_popup": "popup.html" 14 }, 15 16 "content_scripts": [{ 17 "matches": ["chrome://newtab"], 18 "js": ["content_scripts.js"] 19 }] 20}
content_scripts.js
javascript
1alert("O");
と設定し、chromeに読み込ませると、
Invalid value for 'content_scripts[0].matches[0]': Invalid scheme. マニフェストを読み込めませんでした。
とでます。
chrome://
から始まるのはcontentscriptsに指定できないのでしょうか。
もしできないのであれば、ほかの方法を教えてもらえると嬉しいです。
当方完全に初心者ですが、どなたかご鞭撻のほどお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/12 11:39