1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
{
"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"],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"lib/util.js",
"background/libwrapper.js",
"background/emscriptif.js",
"background/db.js",
"background/wallet.js"
]
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}
|