-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
40 lines (37 loc) · 1.17 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
{
"manifest_version": 2,
"name": "Contract Mate",
"version": "1.0",
"description": "Adds a quick access to deth.net editor to view contracts via etherscan",
"icons": {
"48": "icons/logo-48.png",
"96": "icons/logo-96.png",
"256": "icons/logo-256.png"
},
"content_scripts": [
{
"matches": [
"*://etherscan.io/address/*",
"*://ropsten.etherscan.io/address/*",
"*://rinkeby.etherscan.io/address/*",
"*://goerli.etherscan.io/address/*",
"*://kovan.etherscan.io/address/*",
"*://bscscan.com/address/*",
"*://testnet.bscscan.com/address/*",
"*://hecoinfo.com/address/*",
"*://testnet.hecoinfo.com/address/*",
"*://ftmscan.com/address/*",
"*://testnet.ftmscan.com/address/*",
"*://optimistic.etherscan.io/address/*",
"*://kovan-optimistic.etherscan.io/address/*",
"*://polygonscan.com/address/*",
"*://testnet.polygonscan.com/address/*",
"*://arbiscan.io/address/*",
"*://testnet.arbiscan.io/address/*",
"*://snowtrace.io/address/*",
"*://testnet.snowtrace.io/address/*"
],
"js": ["mate.js"]
}
]
}