forked from 409H/EtherAddressLookup
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
55 lines (47 loc) · 1.21 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
{
"manifest_version": 2,
"name": "EtherAddressLookup",
"short_name": "EtherAddressLookup",
"description": "Adds links to strings that look like Ethereum addresses to your favorite blockchain explorer.",
"version": "1.14.3",
"browser_action": {
"default_icon": "images/icon.png",
"default_popup": "options.html",
"default_title": "EtherAddressLookup"
},
"permissions": [
"activeTab"
],
"optional_permissions": [
"history"
],
"content_scripts":[{
"run_at": "document_start",
"matches": ["http://*/*", "https://*/*"],
"js": [
"js/app/lib/punycode.min.js",
"js/app/lib/blockies.min.js",
"js/app/lib/sha256.min.js",
"js/DomainBlacklist.js"
]
},{
"run_at": "document_end",
"matches": ["http://*/*", "https://*/*"],
"js": [
"js/app/lib/web3-light.min.js",
"js/DomManipulator.js"
],
"css": ["css/app.css"]
}],
"background": {
"scripts": ["js/options.js"]
},
"icons": {
"16": "images/ether-16x16.png",
"48": "images/ether-48x48.png",
"128": "images/ether-128x128.png"
},
"web_accessible_resources": [
"images/powered-by-quiknode.png"
]
}