forked from 409H/EtherSecurityLookup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
63 lines (55 loc) · 1.31 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
{
"manifest_version": 2,
"name": "EtherSecurityLookup",
"short_name": "EtherSecurityLookup",
"description": "Tools to help you secure yourself from Phishing scams within the Ethereum world.",
"version": "0.6",
"browser_action": {
"default_icon": "images/esl-yellow.png",
"default_popup": "EtherSecurityLookup.html",
"default_title": "EtherSecurityLookup"
},
"permissions": [
"activeTab"
],
"optional_permissions": [
"history"
],
"content_scripts":[{
"run_at": "document_start",
"matches": ["http://*/*", "https://*/*"],
"js": [
"js/app/lib/punycode.min.js",
"js/app/lib/sha256.min.js",
"js/app/lib/patch-worker.js"
]
},{
"run_at": "document_end",
"matches": ["https://twitter.com/*"],
"js": [
"js/TwitterFakeAccount.js"
]
},{
"run_at": "document_start",
"matches": ["http://*/*", "https://*/*"],
"js": [
"js/DomainValidation.js"
]
}],
"background": {
"scripts": [
"js/api.js",
"js/app/EtherSecurityLookup.js"
]
},
"web_accessible_resources": [
"js/workers/TwitterFakeAccount.js",
"images/esl-green.png",
"js/workers/DomainValidation.js"
],
"icons": {
"16": "images/ether-16x16.png",
"48": "images/ether-48x48.png",
"128": "images/ether-128x128.png"
}
}