chrome-extension/public/manifest.json

26 lines
450 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",
2024-04-14 14:57:30 +03:00
"version": "1.0.0",
"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-04-18 21:40:31 +03:00
"permissions": [ "storage", "system.display", "activeTab", "tabs"
2024-04-14 14:57:30 +03:00
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content-script.js"]
}
]
}