wallet-core/manifest.json
2016-11-17 03:23:26 +01:00

63 lines
1.1 KiB
JSON

{
"manifest_version": 2,
"name": "GNU Taler Wallet (git)",
"description": "Privacy preserving and transparent payments",
"author": "GNU Taler Developers",
"version": "0.6.28",
"version_name": "0.1.4",
"minimum_chrome_version": "49",
"minimum_opera_version": "36",
"applications": {
"gecko": {
"id": "wallet@taler.net",
"strict_min_version": "50.0a1"
}
},
"icons": {
"32": "img/icon.png",
"128": "img/logo.png"
},
"permissions": [
"storage",
"tabs",
"webRequest",
"webRequestBlocking",
"http://*/*",
"https://*/*"
],
"browser_action": {
"default_icon": {
"32": "img/icon.png"
},
"default_title": "Taler",
"default_popup": "src/popup/popup.html"
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": [
"src/vendor/URI.js",
"src/taler-wallet-lib.js",
"src/content_scripts/notify.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"src/*"
],
"background": {
"page": "src/background/background.html",
"persistent": true
}
}