-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
64 lines (64 loc) · 1.34 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
62
63
64
{
"manifest_version": 2,
"name": "EOBOT-TRADER",
"description": "Do trading with your coins on Eobot",
"version": "1.1.0",
"default_locale": "en",
"browser_action": {
"default_icon": "icon/icon-16.png",
"default_title": "Eobot Trader"
},
"permissions": [
"unlimited_storage",
"notifications",
"clipboardRead",
"clipboardWrite",
"contextMenus",
"cookies",
"storage",
"idle",
"webRequest",
"webNavigation",
"tabs",
"activeTab",
"<all_urls>",
"*://eobot.com/*"
],
"web_accessible_resources": [
"icon/icon-128.png",
"tools/trendingview.html",
"svg/btc.svg",
"svg/ltc.svg",
"svg/eth.svg",
"svg/etc.svg",
"svg/bch.svg",
"svg/doge.svg",
"svg/xrp.svg",
"svg/dash.svg",
"svg/gnt.svg",
"svg/ada.svg",
"svg/cure.svg",
"svg/xem.svg",
"svg/xmr.svg",
"svg/zec.svg",
"svg/fct.svg",
"svg/bcn.svg",
"svg/steem.svg",
"svg/lsk.svg",
"svg/eos.svg",
"svg/usd.svg"
],
"icons": {
"16": "icon/icon-16.png",
"34": "icon/icon-34.png",
"48": "icon/icon-48.png",
"128": "icon/icon-128.png"
},
"content_scripts": [{
"matches": ["https://www.eobot.com/*"],
"js": ["js/jquery-3.2.1.min.js", "js/eobot-tools.js"],
"css": ["css/eobot.css"],
"run_at": "document_end",
"all_frames": false
}]
}