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

60 lines
1.6 KiB
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-09-06 23:14:52 +02:00
"version": "0.9.0.17",
"version_name": "0.9.0-dev.17",
2021-12-20 05:38:20 +01:00
"minimum_chrome_version": "88",
2016-10-21 21:28:18 +02:00
"icons": {
2022-04-27 17:22:16 +02:00
"16": "static/img/taler-logo-16.png",
"19": "static/img/taler-logo-19.png",
"32": "static/img/taler-logo-32.png",
"38": "static/img/taler-logo-38.png",
"48": "static/img/taler-logo-48.png",
"64": "static/img/taler-logo-64.png",
"128": "static/img/taler-logo-128.png",
"256": "static/img/taler-logo-256.png",
"512": "static/img/taler-logo-512.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",
"declarativeContent",
2022-04-11 20:41:01 +02:00
"alarms"
],
2022-04-26 16:48:23 +02:00
"commands": {
"_execute_action": {
2022-04-28 18:26:29 +02:00
"suggested_key": {
"default": "Alt+W"
}
2022-04-26 16:48:23 +02:00
}
},
"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": {
2022-04-27 17:22:16 +02:00
"16": "static/img/taler-logo-16.png",
"19": "static/img/taler-logo-19.png",
"32": "static/img/taler-logo-32.png",
"38": "static/img/taler-logo-38.png",
"48": "static/img/taler-logo-48.png",
"64": "static/img/taler-logo-64.png",
"128": "static/img/taler-logo-128.png",
"256": "static/img/taler-logo-256.png",
"512": "static/img/taler-logo-512.png"
2016-10-21 21:28:18 +02:00
},
2022-04-26 16:48:23 +02:00
"default_title": "GNU Taler Wallet",
2020-08-10 18:49:23 +02:00
"default_popup": "static/popup.html"
2015-11-25 20:41:31 +01:00
},
"background": {
2022-05-06 22:29:42 +02:00
"service_worker": "service_worker.js"
2016-10-06 14:32:01 +02:00
}
2022-08-01 12:34:00 +02:00
}