chrome-extension/public/manifest.json

33 lines
661 B
JSON
Raw Normal View History

2024-04-14 14:57:30 +03:00
{
"manifest_version": 3,
2024-04-16 15:48:02 +03:00
"name": "Qortal",
2025-01-10 22:02:01 +02:00
"version": "2.3.0",
2024-04-14 14:57:30 +03:00
"icons": {
2024-04-16 15:48:02 +03:00
"16": "qort.png",
"32": "qort.png",
"48": "qort.png",
"128": "qort.png"
2024-04-14 14:57:30 +03:00
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
},
2024-09-09 20:36:39 +03:00
"permissions": [ "storage", "system.display", "activeTab", "tabs", "notifications", "alarms"
2024-04-14 14:57:30 +03:00
],
2024-07-12 23:44:21 -04:00
2024-04-14 14:57:30 +03:00
"content_scripts": [
2024-11-01 17:30:56 +02:00
2024-04-14 14:57:30 +03:00
{
"matches": ["<all_urls>"],
"js": ["content-script.js"]
2024-10-16 19:57:19 +03:00
}
2024-11-01 17:30:56 +02:00
2024-10-16 19:57:19 +03:00
],
2024-11-01 17:30:56 +02:00
2024-07-12 23:44:21 -04:00
"content_security_policy": {
2024-10-17 06:09:20 +03:00
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; connect-src 'self' https://*:* http://*:* wss://*:* ws://*:*;"
2024-07-12 23:44:21 -04:00
}
2024-04-14 14:57:30 +03:00
}