Files
scriptcat-mv3/src/manifest.json
王一之 315f5f148c
Some checks failed
build / Build (push) Failing after 6s
test / Run tests (push) Failing after 2s
注入脚本和inject/content通信
2025-03-31 18:06:00 +08:00

54 lines
971 B
JSON

{
"manifest_version": 3,
"name": "__MSG_scriptcat__",
"version": "0.17.0.1001",
"author": "CodFrm",
"description": "__MSG_scriptcat_description__",
"options_ui": {
"page": "src/options.html",
"open_in_tab": true
},
"background": {
"service_worker": "src/service_worker.js"
},
"action": {
"default_popup": "src/popup.html",
"default_icon": {
"128": "assets/logo.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src/content.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"icons": {
"128": "assets/logo.png"
},
"default_locale": "zh_CN",
"permissions": [
"tabs",
"storage",
"offscreen",
"scripting",
"activeTab",
"webRequest",
"userScripts",
"declarativeNetRequest"
],
"host_permissions": [
"*://*/*"
],
"sandbox": {
"pages": [
"src/sandbox.html"
]
}
}