-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest-firefox.json
51 lines (50 loc) · 1.34 KB
/
manifest-firefox.json
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
44
45
46
47
48
49
50
51
{
"id": "[email protected]",
"name": "Jaxx Blockchain Wallet",
"version": "1.2",
"manifest_version": 2,
"description": "Unifying the Blockchain Wallet experience across devices.",
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"permissions": [
"storage",
"background",
"notifications",
"tabs",
"<all_urls>",
"https://api.kryptokit.com/",
"https://s3.amazonaws.com/"
],
"icons": {
"16": "img/jaxx_16.png",
"48": "img/jaxx_48.png",
"128": "img/jaxx_128.png"
},
"browser_action": {
"default_icon": {
"19": "img/jaxxb_19.png",
"38": "img/jaxxb_38.png"
},
"default_popup": "index.html"
},
"background": {
"scripts": [
"js/thirdparty.js",
"js/network.js",
"js/request.js",
"js/wallet/wallet.js",
"js/wallet/ethereum_wallet.js",
"js/thirdparty/aes.js",
"js/thirdparty/bitcoinjs.min.js",
"js/thirdparty/jquery-2.1.4.min.js",
"js/thirdparty/lightwallet.min.js",
"js/utils/util.js",
"js/utils/cacheUtils.js",
"js/platform/platformUtils.js",
"js/platform/firefoxExtensionRunner.js"
]
}
}