wallet-core/manifest.json

52 lines
919 B
JSON
Raw Normal View History

2015-11-25 20:41:31 +01:00
{
"description": "Privacy preserving and transparent payments",
"manifest_version": 2,
2016-02-09 22:17:24 +01:00
"name": "GNU Taler Wallet (git)",
2016-10-04 11:48:50 +02:00
"version": "0.6.10",
"version_name": "0.0.1-pre6",
2015-11-25 20:41:31 +01:00
"applications": {
"gecko": {
"id": "devs@taler.net"
}
},
"permissions": [
"storage",
2016-03-02 15:33:23 +01:00
"tabs",
2016-09-06 13:31:30 +02:00
"webRequest",
"webRequestBlocking",
2015-11-25 20:41:31 +01:00
"http://*/*",
"https://*/*"
2015-12-03 20:07:03 +01:00
],
2015-11-25 20:41:31 +01:00
"browser_action": {
2015-12-20 20:34:20 +01:00
"default_icon": "img/icon.png",
2015-11-25 20:41:31 +01:00
"default_title": "Taler",
"default_popup": "popup/popup.html"
2015-11-25 20:41:31 +01:00
},
2015-12-03 20:07:03 +01:00
2015-11-25 20:41:31 +01:00
"content_scripts": [
{
"matches": ["*://*/*"],
"js": [
"lib/vendor/URI.js",
2016-09-26 14:52:33 +02:00
"lib/taler-wallet-lib.js",
"content_scripts/notify.js"
],
2015-11-25 20:41:31 +01:00
"run_at": "document_start"
}
],
2015-12-07 23:39:25 +01:00
"web_accessible_resources": [
"pages/*",
"lib/*"
],
2015-11-25 20:41:31 +01:00
"background": {
2016-09-23 21:57:07 +02:00
"page": "background/background.html"
2015-12-04 22:47:44 +01:00
},
2016-01-26 17:21:17 +01:00
2016-09-28 20:06:53 +02:00
"minimum_chrome_version": "49"
2015-11-25 20:41:31 +01:00
}