-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.json
70 lines (70 loc) · 1.74 KB
/
plugins.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
{
"description": "ScaleWallet plugins repo. ScaleWallet can load plugins only from this repo.",
"site": "https://scalewallet.com",
"plugins": [
{
"name": "TestPlugin",
"path": "test_plugin",
"disabled": true,
"description": "Just test plugin",
"modules": {
"background": false,
"frame": "pluginFrame.html",
"mainModule": "module.mjs"
},
"menuAction": {
"title": "TestPluginMenuButton",
"icon": false,
"page": {
"content": "pluginFrame.html",
"title": "TestPlugin"
}
}
},
{
"name": "TestDeBot Browser",
"path": "test_debotBrowser",
"disabled": true,
"description": "Test plugin implements debot browser",
"modules": {
"background": false,
"frame": "https://browser.freeton-stats.org",
"mainModule": false
},
"menuAction": {
"title": "DeBot browser",
"icon": false,
"page": {
"content": "https://browser.freeton-stats.org",
"title": "DeBot Browser"
}
}
},
{
"name": "NFT Wallet",
"path": "nft_wallet",
"disabled": false,
"description": "NFT Wallet plugin allows to manage your NFT tokens in ScaleWallet",
"modules": {
"background": false,
"frame": "pluginFrame.html",
"mainModule": false
},
"menuAction": {
"title": "NFT Wallet",
"icon": "menu_icon.png",
"page": {
"content": "pluginFrame.html",
"title": "NFT Wallet"
}
},
"mainTab": {
"title": "NFT",
"page": {
"content": "pluginFrame.html",
"title": "NFT Wallet"
}
}
}
]
}