2015-11-25 20:41:31 +01:00
|
|
|
{
|
|
|
|
"manifest_version": 2,
|
2017-03-10 16:06:58 +01:00
|
|
|
"minimum_chrome_version": "51",
|
2016-10-21 17:34:42 +02:00
|
|
|
"minimum_opera_version": "36",
|
2022-04-26 04:07:31 +02:00
|
|
|
"browser_specific_settings": {
|
2015-11-25 20:41:31 +01:00
|
|
|
"gecko": {
|
2016-10-11 17:55:14 +02:00
|
|
|
"id": "wallet@taler.net",
|
2021-06-21 15:08:28 +02:00
|
|
|
"strict_min_version": "57.0"
|
2015-11-25 20:41:31 +01:00
|
|
|
}
|
|
|
|
},
|
2022-04-26 16:48:23 +02:00
|
|
|
"commands": {
|
|
|
|
"_execute_browser_action": {
|
2022-04-28 18:26:29 +02:00
|
|
|
"suggested_key": {
|
|
|
|
"default": "Alt+W"
|
|
|
|
}
|
2022-04-26 16:48:23 +02:00
|
|
|
}
|
|
|
|
},
|
2015-11-25 20:41:31 +01:00
|
|
|
"permissions": [
|
2021-12-20 05:38:20 +01:00
|
|
|
"unlimitedStorage",
|
2023-04-18 15:47:53 +02:00
|
|
|
"storage",
|
2020-05-01 10:46:56 +02:00
|
|
|
"activeTab"
|
|
|
|
],
|
2023-04-13 17:57:23 +02:00
|
|
|
"web_accessible_resources": [
|
|
|
|
"static/wallet.html",
|
2023-04-13 20:04:31 +02:00
|
|
|
"dist/taler-wallet-interaction-loader.js.map",
|
|
|
|
"dist/taler-wallet-interaction-loader.js",
|
|
|
|
"dist/taler-wallet-interaction-support.js.map",
|
2023-04-13 17:57:23 +02:00
|
|
|
"dist/taler-wallet-interaction-support.js"
|
|
|
|
],
|
2023-04-13 17:19:00 +02:00
|
|
|
"content_scripts": [{
|
|
|
|
"id": "taler-wallet-interaction-support",
|
|
|
|
"matches": ["file://*/*", "http://*/*", "https://*/*"],
|
|
|
|
"js": ["dist/taler-wallet-interaction-loader.js"]
|
|
|
|
}],
|
2022-12-22 22:42:18 +01:00
|
|
|
"protocol_handlers": [
|
2023-04-18 15:47:53 +02:00
|
|
|
{
|
|
|
|
"protocol": "ext+taler+http",
|
|
|
|
"name": "Taler Wallet WebExtension",
|
|
|
|
"uriTemplate": "/static/wallet.html#/cta/taler-uri/%s"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"protocol": "web+taler+http",
|
|
|
|
"name": "Taler Wallet WebExtension",
|
|
|
|
"uriTemplate": "/static/wallet.html#/cta/taler-uri/%s"
|
|
|
|
},
|
2022-12-22 22:42:18 +01:00
|
|
|
{
|
|
|
|
"protocol": "ext+taler",
|
|
|
|
"name": "Taler Wallet WebExtension",
|
2023-04-18 15:47:53 +02:00
|
|
|
"uriTemplate": "/static/wallet.html#/cta/taler-uri/%s"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"protocol": "web+taler",
|
|
|
|
"name": "Taler Wallet WebExtension",
|
|
|
|
"uriTemplate": "/static/wallet.html#/cta/taler-uri/%s"
|
2022-12-22 22:42:18 +01:00
|
|
|
}
|
|
|
|
],
|
2015-11-25 20:41:31 +01:00
|
|
|
"browser_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": {
|
2020-08-10 18:49:23 +02:00
|
|
|
"page": "static/background.html",
|
2016-10-21 21:28:18 +02:00
|
|
|
"persistent": true
|
2016-10-06 14:32:01 +02:00
|
|
|
}
|
2022-09-12 19:28:53 +02:00
|
|
|
}
|