wallet-core/manifest.json
2016-09-06 13:31:30 +02:00

57 lines
1.0 KiB
JSON

{
"description": "Privacy preserving and transparent payments",
"manifest_version": 2,
"name": "GNU Taler Wallet (git)",
"version": "0.6.1",
"version_name": "0.0.0",
"applications": {
"gecko": {
"id": "devs@taler.net"
}
},
"permissions": [
"storage",
"tabs",
"webRequest",
"webRequestBlocking",
"http://*/*",
"https://*/*"
],
"browser_action": {
"default_icon": "img/icon.png",
"default_title": "Taler",
"default_popup": "popup/popup.html"
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": [
"lib/vendor/URI.js",
"lib/vendor/system-csp-production.src.js",
"content_scripts/notify.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"pages/*",
"lib/*"
],
"background": {
"scripts": [
"lib/vendor/URI.js",
"lib/vendor/lodash.core.min.js",
"lib/vendor/system-csp-production.src.js",
"background/main.js"
]
},
"minimum_chrome_version": "47.0.2526"
}