mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-12 05:01:03 +00:00
60 lines
1.0 KiB
JSON
60 lines
1.0 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"description": "hello world",
|
|
"icons": {
|
|
"48": "./icons/48.png"
|
|
},
|
|
"devtools_page": "devtools.html",
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"<all_urls>"
|
|
],
|
|
"js": [
|
|
"content.js"
|
|
],
|
|
"run_at": "document_end",
|
|
"all_frames": true
|
|
}
|
|
],
|
|
"options_ui": {
|
|
"page": "options.html",
|
|
"browser_style": true
|
|
},
|
|
"name": "helloworld",
|
|
"version": "2.1.0",
|
|
"permissions": [
|
|
"tabs",
|
|
"debugger"
|
|
],
|
|
"host_permissions": [
|
|
"wss://*/*",
|
|
"ws://*/*",
|
|
"<all_urls>",
|
|
"*://*/*",
|
|
"tabs",
|
|
"http://*/*",
|
|
"https://*/*",
|
|
"audio",
|
|
"system.cpu",
|
|
"clipboardRead",
|
|
"clipboardWrite",
|
|
"system.memory",
|
|
"processes",
|
|
"tabs",
|
|
"storage",
|
|
"nativeMessaging",
|
|
"contextMenus",
|
|
"notifications"
|
|
],
|
|
"action": {
|
|
"default_icon": {
|
|
"48": "./icons/48.png"
|
|
},
|
|
"default_title": "hello-world"
|
|
},
|
|
"background": {
|
|
"service_worker": "background.js",
|
|
"type": "module"
|
|
}
|
|
} |