2025-02-11 13:49:50 +08:00

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"
}
}