manifest and icons

Signed-off-by: PRavaga <trueravaga@gmail.com>
This commit is contained in:
PRavaga 2023-04-13 20:03:31 +02:00
parent 16f88631e2
commit cec330c629
No known key found for this signature in database
GPG key ID: 2A5FC2B63150943E
5 changed files with 23 additions and 4 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

BIN
public/images/zano_16px.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 654 B

BIN
public/images/zano_48px.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -1,10 +1,29 @@
{
"manifest_version": 3,
"name": "Zano extension",
"description": "Zano browser wallet extension",
"name": "Zano Companion",
"version": "1.0",
"description": "A browser extension for Zano wallet app",
"permissions": ["<all_urls>"],
"action": {
"default_popup": "index.html",
"default_icon": "zano_extension.png"
"default_icon": {
"16": "images/zano_16px.png",
"48": "images/zano_48px.png",
"128": "images/zano_128px.png"
}
},
"background": {
"service_worker": "static/js/background.bundle.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["static/js/content.bundle.js"]
}
],
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB