wallet-core/extension/manifest.json
2015-12-05 16:30:16 +01:00

48 lines
901 B
JSON

{
"description": "Privacy preserving and transparent payments",
"manifest_version": 2,
"name": "Taler Wallet",
"version": "0.1",
"applications": {
"gecko": {
"id": "devs@taler.net"
}
},
"permissions": [
"http://*/*",
"https://*/*"
],
"browser_action": {
"default_icon": "icons/taler-logo-24.png",
"default_title": "Taler",
"default_popup": "popup/wallet.html"
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": [
"content_scripts/notify.js",
"lib/URI.js"
],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"lib/util.js",
"lib/URI.js",
"background/libwrapper.js",
"background/emscriptif.js",
"background/db.js",
"background/wallet.js"
]
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}