forked from toncenter/ton-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (43 loc) · 843 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
{
"manifest_version": 3,
"name": "TON Wallet",
"description": "Set up your own TON Wallet on The Open Network.",
"version": "1.1.33",
"action": {
"default_icon": "assets/icon_32x32.png",
"default_popup": "popup.html"
},
"permissions": [
"storage",
"webRequest"
],
"background": {
"service_worker": "/js/extension/serviceWorker.js"
},
"content_scripts": [
{
"matches": [
"file://*/*",
"http://*/*",
"https://*/*"
],
"js": [
"/js/extension/contentScript.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"/js/extension/tonProvider.js"
],
"matches": [
"file://*/*",
"http://*/*",
"https://*/*"
]
}
]
}