wallet-core/manifest.json
Florian Dold 1b23dabd51 version
2016-10-04 14:07:53 +02:00

52 lines
919 B
JSON

{
"description": "Privacy preserving and transparent payments",
"manifest_version": 2,
"name": "GNU Taler Wallet (git)",
"version": "0.6.14",
"version_name": "0.0.1-pre8",
"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/taler-wallet-lib.js",
"content_scripts/notify.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"pages/*",
"lib/*"
],
"background": {
"page": "background/background.html"
},
"minimum_chrome_version": "49"
}