mirror of
https://github.com/Qortal/chrome-extension.git
synced 2025-02-12 02:05:49 +00:00
52 lines
1.1 KiB
JSON
52 lines
1.1 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Qortal",
|
|
"version": "2.1.0",
|
|
"icons": {
|
|
"16": "qort.png",
|
|
"32": "qort.png",
|
|
"48": "qort.png",
|
|
"128": "qort.png"
|
|
},
|
|
"background": {
|
|
"service_worker": "background.js",
|
|
"type": "module"
|
|
},
|
|
"action": {
|
|
},
|
|
"permissions": [ "storage", "system.display", "activeTab", "tabs", "notifications", "alarms"
|
|
],
|
|
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["document_start.js"],
|
|
"run_at": "document_start"
|
|
},
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content-script.js"]
|
|
},
|
|
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["document_end.js"],
|
|
"run_at": "document_end"
|
|
}
|
|
],
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": ["disable-gateway-popup.js"],
|
|
"matches": ["<all_urls>"]
|
|
},
|
|
{
|
|
"resources": ["disable-gateway-message.js"],
|
|
"matches": ["<all_urls>"]
|
|
}
|
|
|
|
],
|
|
"content_security_policy": {
|
|
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; connect-src 'self' https://*:* http://*:* wss://*:* ws://*:*;"
|
|
}
|
|
}
|