-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
49 lines (48 loc) · 860 Bytes
/
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
{
"short_name": "Zeal",
"name": "Zeal Wallet",
"version": "0.1.34",
"manifest_version": 3,
"permissions": [
"clipboardRead",
"storage"
],
"web_accessible_resources": [
{
"resources": [
"index.html",
"ledger.html",
"inpage.js"
],
"matches": [
"https://*/*"
]
}
],
"content_scripts": [
{
"js": [
"content_script.js"
],
"matches": [
"https://*/*"
],
"run_at": "document_start"
}
],
"action": {
"default_popup": "index.html?type=extension",
"default_icon": {
"16": "action-16.png",
"32": "action-32.png",
"48": "action-48.png",
"128": "action-128.png"
}
},
"icons": {
"16": "page-16.png",
"32": "page-32.png",
"48": "page-48.png",
"128": "page-128.png"
}
}