wallet-core/extension/manifest.json

56 lines
1.0 KiB
JSON
Raw Normal View History

2015-11-25 20:41:31 +01:00
{
"description": "Privacy preserving and transparent payments",
"manifest_version": 2,
2015-12-25 22:42:14 +01:00
"name": "GNU Taler Wallet",
2016-01-18 22:28:19 +01:00
"version": "0.5.1",
2015-11-25 20:41:31 +01:00
"applications": {
"gecko": {
"id": "devs@taler.net"
}
},
"permissions": [
"storage",
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",
2015-12-16 08:01:43 +01:00
"default_popup": "popup/balance-overview.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/system.src.js",
"lib/vendor/URI.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": {
2015-12-04 22:47:44 +01:00
"scripts": [
"lib/vendor/URI.js",
"lib/vendor/handlebars-v4.0.5.js",
"lib/emscripten/libwrapper.js",
"lib/vendor/system.src.js",
"background/main.js"
2015-12-04 22:47:44 +01:00
]
},
2015-11-25 20:41:31 +01:00
2016-01-08 21:46:29 +01:00
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"minimum_chrome_version": "47.0.2526"
2015-11-25 20:41:31 +01:00
}