-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
41 lines (41 loc) · 1.51 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
{
"manifest_version": 2,
"name": "View contract on deth.net",
"version": "1.0",
"description": "Adds a button to etherscan family websites to view contract code on deth.net",
"icons": {
"16": "icons/16.png",
"64": "icons/64.png",
"128": "icons/128.png"
},
"content_scripts": [
{
"matches": [
"*://arbiscan.io/address/*",
"*://bscscan.com/address/*",
"*://etherscan.io/address/*",
"*://ftmscan.com/address/*",
"*://goerli.etherscan.io/address/*",
"*://hecoinfo.com/address/*",
"*://kovan-optimistic.etherscan.io/address/*",
"*://kovan.etherscan.io/address/*",
"*://moonbase.moonscan.io/address/*",
"*://moonriver.moonscan.io/address/*",
"*://optimistic.etherscan.io/address/*",
"*://polygonscan.com/address/*",
"*://rinkeby.etherscan.io/address/*",
"*://ropsten.etherscan.io/address/*",
"*://snowtrace.io/address/*",
"*://testnet.arbiscan.io/address/*",
"*://testnet.bscscan.com/address/*",
"*://testnet.ftmscan.com/address/*",
"*://testnet.hecoinfo.com/address/*",
"*://testnet.polygonscan.com/address/*",
"*://testnet.snowtrace.io/address/*"
],
"js": [
"deth.js"
]
}
]
}