473503a246
Use ES6 module syntax and SystemJS modules for everything. Some testing stubs were added as well.
58 lines
1.1 KiB
JSON
58 lines
1.1 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": [
|
|
"lib/vendor/system.src.js",
|
|
"lib/vendor/URI.js",
|
|
"lib/util.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/util.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"
|
|
}
|