wallet-core/packages/taler-wallet-webextension/manifest-v3.json
2022-03-16 15:19:27 +01:00

36 lines
754 B
JSON

{
"manifest_version": 3,
"name": "GNU Taler Wallet (git)",
"description": "Privacy preserving and transparent payments",
"author": "GNU Taler Developers",
"version": "0.9.0.9",
"version_name": "0.9.0-dev.9",
"minimum_chrome_version": "88",
"icons": {
"32": "static/img/icon.png",
"128": "static/img/logo.png"
},
"permissions": [
"unlimitedStorage",
"activeTab",
"scripting"
],
"optional_permissions": [
"webRequest"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"action": {
"default_icon": {
"32": "static/img/icon.png"
},
"default_title": "Taler",
"default_popup": "static/popup.html"
},
"background": {
"service_worker": "dist/background.js"
}
}