2015-11-25 20:41:31 +01:00
|
|
|
{
|
|
|
|
"description": "Privacy preserving and transparent payments",
|
|
|
|
"manifest_version": 2,
|
2015-12-25 22:42:14 +01:00
|
|
|
"name": "GNU Taler Wallet",
|
2015-12-26 00:56:02 +01:00
|
|
|
"version": "0.5",
|
2015-11-25 20:41:31 +01:00
|
|
|
|
|
|
|
"applications": {
|
|
|
|
"gecko": {
|
|
|
|
"id": "devs@taler.net"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
"permissions": [
|
2016-01-04 10:48:57 +01:00
|
|
|
"storage",
|
2015-11-25 20:41:31 +01:00
|
|
|
"http://*/*",
|
|
|
|
"https://*/*"
|
2015-12-03 20:07:03 +01:00
|
|
|
],
|
2015-11-25 20:41:31 +01:00
|
|
|
|
|
|
|
"browser_action": {
|
2015-12-20 20:34:20 +01:00
|
|
|
"default_icon": "img/icon.png",
|
2015-11-25 20:41:31 +01:00
|
|
|
"default_title": "Taler",
|
2015-12-16 08:01:43 +01:00
|
|
|
"default_popup": "popup/balance-overview.html"
|
2015-11-25 20:41:31 +01:00
|
|
|
},
|
2015-12-03 20:07:03 +01:00
|
|
|
|
2015-11-25 20:41:31 +01:00
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"matches": ["*://*/*"],
|
2015-12-05 16:30:16 +01:00
|
|
|
"js": [
|
|
|
|
"content_scripts/notify.js",
|
2015-12-07 23:39:25 +01:00
|
|
|
"lib/URI.js",
|
|
|
|
"lib/util.js"
|
2015-12-05 16:30:16 +01:00
|
|
|
],
|
2015-11-25 20:41:31 +01:00
|
|
|
"run_at": "document_start"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
|
2015-12-07 23:39:25 +01:00
|
|
|
"web_accessible_resources": [
|
|
|
|
"pages/*",
|
|
|
|
"lib/*"
|
|
|
|
],
|
|
|
|
|
2015-11-25 20:41:31 +01:00
|
|
|
"background": {
|
2015-12-04 22:47:44 +01:00
|
|
|
"scripts": [
|
|
|
|
"lib/util.js",
|
2015-12-05 16:30:16 +01:00
|
|
|
"lib/URI.js",
|
2015-12-04 22:47:44 +01:00
|
|
|
"background/libwrapper.js",
|
|
|
|
"background/emscriptif.js",
|
|
|
|
"background/db.js",
|
2016-01-05 01:10:31 +01:00
|
|
|
"background/query.js",
|
2015-12-04 22:47:44 +01:00
|
|
|
"background/wallet.js"
|
|
|
|
]
|
|
|
|
},
|
2015-11-25 20:41:31 +01:00
|
|
|
|
2015-12-04 22:47:44 +01:00
|
|
|
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
|
2015-11-25 20:41:31 +01:00
|
|
|
}
|