wallet-core/extension/manifest.json
Florian Dold b8627813be Replace handlebars with mithril, hooks for i18n.
The wallet is now a single page application.
2016-01-24 02:29:13 +01:00

56 lines
1.0 KiB
JSON

{
"description": "Privacy preserving and transparent payments",
"manifest_version": 2,
"name": "GNU Taler Wallet",
"version": "0.5.1",
"applications": {
"gecko": {
"id": "devs@taler.net"
}
},
"permissions": [
"storage",
"http://*/*",
"https://*/*"
],
"browser_action": {
"default_icon": "img/icon.png",
"default_title": "Taler",
"default_popup": "popup/popup.html"
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": [
"lib/vendor/system.src.js",
"lib/vendor/URI.js",
"content_scripts/notify.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"pages/*",
"lib/*"
],
"background": {
"scripts": [
"lib/vendor/URI.js",
"lib/vendor/handlebars-v4.0.5.js",
"lib/emscripten/libwrapper.js",
"lib/vendor/system.src.js",
"background/main.js"
]
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"minimum_chrome_version": "47.0.2526"
}