Qortal extension for Google Chrome, and other Chromium-based Browsers. Allows wallet and games, and more in the future! https://qortal.dev
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
584 B

5 months ago
{
"manifest_version": 3,
"name": "Qortal",
5 months ago
"version": "1.0.0",
"icons": {
"16": "qort.png",
"32": "qort.png",
"48": "qort.png",
"128": "qort.png"
5 months ago
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
},
"permissions": ["scripting", "storage", "system.display", "activeTab", "tabs", "notifications"
],
"externally_connectable": {
"matches": ["<all_urls>", "*://localhost/*", "*://127.0.0.1/*"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content-script.js"]
}
]
}