-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmanifest.json
61 lines (54 loc) · 1.66 KB
/
manifest.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
52
53
54
55
56
57
58
59
60
61
{
"manifest_version": 2,
"name": "Telescope BitcoinCash WebWallet",
"author": "Aaron Angert",
"description": "A Bitcoin Cash wallet in the browser. Send and receive instantly on any web page.",
"version": "3.2",
"icons": {
"16": "data/bitcoin16.png",
"48": "data/bitcoin48.png",
"128": "data/bitcoin128.png"
},
"content_security_policy": "script-src 'self' ; object-src 'self';",
"permissions": ["contextMenus", "activeTab", "<all_urls>", "storage"],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"data/js/libs/sanitize-html.js",
"data/js/libs/jquery-3.3.1.min.js",
"data/js/libs/cryptojs.js",
"data/js/libs/bitcoincash-0.1.10.js",
"data/js/libs/BigInteger.js",
"data/js/libs/socket.io.js",
"data/js/util.js",
"data/js/preferences.js",
"data/js/currency-manager.js",
"data/js/wallet.js",
"data/js/paypopup.js",
"data/js/hoverpopup.js"
],
"all_frames": true
}
],
"background": {
"scripts": ["data/js/background.js"]
},
"web_accessible_resources": [
"data/*"
],
"browser_action": {
"default_icon": {
"19": "data/bitcoin19.png",
"38": "data/bitcoin38.png"
},
"default_title": "Telescope",
"default_popup": "data/index.html"
},
"applications": {
"gecko": {
"id": "@BitcoinCashWallet",
"strict_min_version": "57.0"
}
}
}