wallet-core/packages/taler-wallet-webextension/manifest-v2.json
2022-02-01 11:16:23 +01:00

42 lines
907 B
JSON

{
"manifest_version": 2,
"name": "GNU Taler Wallet (git)",
"description": "Privacy preserving and transparent payments",
"author": "GNU Taler Developers",
"version": "0.9.0.7",
"version_name": "0.9.0-dev.7",
"minimum_chrome_version": "51",
"minimum_opera_version": "36",
"applications": {
"gecko": {
"id": "wallet@taler.net",
"strict_min_version": "57.0"
}
},
"icons": {
"32": "static/img/icon.png",
"128": "static/img/logo.png"
},
"permissions": [
"unlimitedStorage",
"activeTab"
],
"optional_permissions": [
"webRequest",
"webRequestBlocking",
"http://*/*",
"https://*/*"
],
"browser_action": {
"default_icon": {
"32": "static/img/icon.png"
},
"default_title": "Taler",
"default_popup": "static/popup.html"
},
"background": {
"page": "static/background.html",
"persistent": true
}
}