-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
67 lines (65 loc) · 1.49 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
64
65
66
67
{
"manifest_version": 3,
"name": "{{envBadge}}NexWallet — Web3 Wallet",
"version": "{{pkg.version}}",
"icons": {
"16": "icons/16.png",
"48": "icons/128.png",
"128": "icons/512.png"
},
"description": "__MSG_appDesc__",
"homepage_url": "{{website}}",
"short_name": "NexWallet",
"permissions": [
"tabs",
"storage",
"clipboardWrite",
"activeTab",
"scripting"
],
"host_permissions": [
"http://localhost:8545/",
"file://*/*",
"http://*/*",
"https://*/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; frame-ancestors 'none';"
},
"author": "{{website}}",
"__firefox__applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "68.0"
}
},
"__chrome__minimum_chrome_version": "88",
"default_locale": "en",
"action": {
"default_popup": "popup.html",
"default_title": "NexWallet",
"default_icon": {
"16": "icons/16.png",
"48": "icons/128.png",
"128": "icons/512.png"
},
"__chrome__chrome_style": false,
"__firefox__browser_style": false
},
"background": {
"service_worker": "sw.js"
},
"content_scripts": [
{
"matches": ["file://*/*", "http://*/*", "https://*/*"],
"js": ["scripts/content.js"],
"run_at": "document_start",
"all_frames": true
},
{
"matches": ["{{website}}/*"],
"js": ["scripts/version.js"],
"run_at": "document_start"
}
]
}