-
Notifications
You must be signed in to change notification settings - Fork 17
/
manifest.json
89 lines (89 loc) · 1.89 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"manifest_version": 3,
"name": "Pali Wallet",
"version": "3.0.0",
"icons": {
"16": "assets/icons/favicon-16.png",
"32": "assets/icons/favicon-32.png",
"48": "assets/icons/favicon-48.png",
"128": "assets/icons/favicon-128.png"
},
"description": "A Non-Custodial Crypto Wallet",
"short_name": "pali",
"permissions": [
"storage",
"activeTab",
"clipboardWrite",
"unlimitedStorage",
"offscreen",
"scripting",
"webRequest"
],
"host_permissions": [
"http://*/*",
"https://*/*",
"*://connect.trezor.io/9/*",
"*://*.eth/",
"http://localhost:8545/"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"author": "pollum labs",
"minimum_chrome_version": "88",
"action": {
"default_popup": "app.html",
"default_icon": {
"16": "assets/icons/favicon-16.png",
"32": "assets/icons/favicon-32.png",
"48": "assets/icons/favicon-48.png",
"128": "assets/icons/favicon-128.png"
},
"default_title": "Pali Wallet"
},
"background": {
"service_worker": "js/background.bundle.js"
},
"content_scripts": [
{
"all_frames": true,
"matches": [
"file://*/*",
"http://*/*",
"https://*/*"
],
"run_at": "document_start",
"js": [
"js/contentScript.bundle.js"
]
},
{
"matches": [
"*://connect.trezor.io/9/popup.html",
"https://localhost:8088/*"
],
"js": [
"js/trezorScript.bundle.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"js/inpage.bundle.js",
"js/handleWindowProperties.bundle.js",
"js/pali.bundle.js"
],
"matches": [
"<all_urls>"
]
}
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+P"
}
}
}
}