-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmanifest.json
53 lines (45 loc) · 1.44 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
{
"manifest_version": 2,
"name": "BitBrowser Auroracoin Wallet",
"author": "Andrew Toth, modifed by Joseph Lee",
"description": "Auroracoin wallet in the browser. Send and receive instantly on any web page.",
"version": "1.2",
"icons": {
"16": "data/auroracoin16.png",
"48": "data/auroracoin48.png",
"128": "data/auroracoin128.png"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
"permissions": ["contextMenus", "activeTab", "<all_urls>", "storage"],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"data/js/libs/jquery.min.js",
"data/js/libs/cryptojs.min.js",
"data/js/libs/bitcoinjs-lib.min.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/auroracoin19.png",
"38": "data/auroracoin38.png"
},
"default_title": "Auroracoin Wallet",
"default_popup": "data/index.html"
}
}