wallet-core/packages/taler-wallet-webextension/manifest-v3.json

36 lines
767 B
JSON
Raw Normal View History

2015-11-25 20:41:31 +01:00
{
2021-12-20 05:38:20 +01:00
"manifest_version": 3,
2016-02-09 22:17:24 +01:00
"name": "GNU Taler Wallet (git)",
2016-10-21 21:28:18 +02:00
"description": "Privacy preserving and transparent payments",
"author": "GNU Taler Developers",
2022-03-16 15:19:27 +01:00
"version": "0.9.0.9",
"version_name": "0.9.0-dev.9",
2021-12-20 05:38:20 +01:00
"minimum_chrome_version": "88",
2016-10-21 21:28:18 +02:00
"icons": {
2020-08-10 18:49:23 +02:00
"32": "static/img/icon.png",
"128": "static/img/logo.png"
2016-10-21 21:28:18 +02:00
},
2015-11-25 20:41:31 +01:00
"permissions": [
2021-12-20 05:38:20 +01:00
"unlimitedStorage",
"activeTab",
2022-04-11 20:41:01 +02:00
"scripting",
"alarms"
],
"optional_permissions": [
"webRequest"
2021-12-20 05:38:20 +01:00
],
"host_permissions": [
2015-11-25 20:41:31 +01:00
"http://*/*",
"https://*/*"
2015-12-03 20:07:03 +01:00
],
2021-12-20 05:38:20 +01:00
"action": {
2016-10-21 21:28:18 +02:00
"default_icon": {
2020-08-10 18:49:23 +02:00
"32": "static/img/icon.png"
2016-10-21 21:28:18 +02:00
},
2015-11-25 20:41:31 +01:00
"default_title": "Taler",
2020-08-10 18:49:23 +02:00
"default_popup": "static/popup.html"
2015-11-25 20:41:31 +01:00
},
"background": {
"service_worker": "dist/background.js"
2016-10-06 14:32:01 +02:00
}
2022-04-11 20:41:01 +02:00
}