Files
chrome-extension/public/manifest.json
T
2026-02-09 20:32:10 +02:00

36 lines
688 B
JSON

{
"manifest_version": 3,
"name": "Qortal",
"version": "2.3.8",
"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": ["content-script.js"]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; connect-src 'self' https://*:* http://*:* wss://*:* ws://*:*;"
}
}