56 lines
1.0 KiB
JSON
56 lines
1.0 KiB
JSON
{
|
|
"description": "Privacy preserving and transparent payments",
|
|
"manifest_version": 2,
|
|
"name": "GNU Taler Wallet",
|
|
"version": "0.5",
|
|
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "devs@taler.net"
|
|
}
|
|
},
|
|
|
|
"permissions": [
|
|
"storage",
|
|
"http://*/*",
|
|
"https://*/*"
|
|
],
|
|
|
|
"browser_action": {
|
|
"default_icon": "img/icon.png",
|
|
"default_title": "Taler",
|
|
"default_popup": "popup/balance-overview.html"
|
|
},
|
|
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://*/*"],
|
|
"js": [
|
|
"content_scripts/notify.js",
|
|
"lib/URI.js",
|
|
"lib/util.js"
|
|
],
|
|
"run_at": "document_start"
|
|
}
|
|
],
|
|
|
|
"web_accessible_resources": [
|
|
"pages/*",
|
|
"lib/*"
|
|
],
|
|
|
|
"background": {
|
|
"scripts": [
|
|
"lib/util.js",
|
|
"lib/URI.js",
|
|
"background/libwrapper.js",
|
|
"background/emscriptif.js",
|
|
"background/db.js",
|
|
"background/query.js",
|
|
"background/wallet.js"
|
|
]
|
|
},
|
|
|
|
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
|
|
}
|