-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
69 lines (64 loc) · 1.81 KB
/
manifest.json
File metadata and controls
69 lines (64 loc) · 1.81 KB
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
65
66
67
68
69
{
"manifest_version": 3,
"name": "Ethoscan",
"version": "0.1.0",
"description": "Ethoscan is a browser extension that displays first party Ethos reputation data inline on blockchain explorer address pages.",
"permissions": ["activeTab", "storage"],
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"action": {
"default_popup": "popup.html",
"default_title": "Ethoscan Settings",
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"content_scripts": [
{
"matches": [
"https://etherscan.io/address/*",
"https://basescan.org/address/*",
"https://polygonscan.com/address/*",
"https://bscscan.com/address/*",
"https://arbiscan.io/address/*",
"https://ftmscan.com/address/*",
"https://snowtrace.io/address/*",
"https://celoscan.io/address/*",
"https://moonscan.io/address/*",
"https://blockscout.com/address/*",
"https://*.blockscout.com/address/*",
"https://debank.com/profile/*",
"https://routescan.io/address/*",
"https://*.routescan.io/address/*"
],
"js": ["content.js"],
"css": ["content.css"]
}
],
"web_accessible_resources": [
{
"resources": ["assets/*.js"],
"matches": [
"https://etherscan.io/*",
"https://basescan.org/*",
"https://polygonscan.com/*",
"https://bscscan.com/*",
"https://arbiscan.io/*",
"https://ftmscan.com/*",
"https://snowtrace.io/*",
"https://celoscan.io/*",
"https://moonscan.io/*",
"https://blockscout.com/*",
"https://*.blockscout.com/*",
"https://debank.com/*",
"https://routescan.io/*",
"https://*.routescan.io/*"
]
}
]
}