chrome-extension/public/manifest.json
2024-04-18 21:40:31 +03:00

26 lines
450 B
JSON

{
"manifest_version": 3,
"name": "Qortal",
"version": "1.0.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"]
}
]
}