mirror of
https://github.com/Qortal/chrome-extension.git
synced 2025-02-11 17:55:49 +00:00
30 lines
838 B
JSON
30 lines
838 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Qortal",
|
|
"version": "1.2.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"
|
|
],
|
|
|
|
"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://api.qortal.org https://api2.qortal.org https://appnode.qortal.org https://apinode.qortalnodes.live https://apinode1.qortalnodes.live https://apinode2.qortalnodes.live https://apinode3.qortalnodes.live https://apinode4.qortalnodes.live;"
|
|
}
|
|
}
|