forked from Wyliodrin/WyliodrinSTUDIO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
63 lines (63 loc) · 1.22 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
{
"name": "__MSG_appName__",
"description":"__MSG_appDesc__",
"version": "11.2",
"manifest_version": 2,
"default_locale":"en",
"author":"Wyliodrin SRL",
"app": {
"background": {
"scripts": [
"wyliodrin.js"
],
"persistent":false
}
},
"icons": {
"128": "wyliodrin-studio-icon.png"
},
"sandbox":
{
"pages":[
"public/views/extra.html",
"public/documentation/*",
"public/notebook/*"
]
},
"sockets": { "tcp": {"connect":"*:*"}, "udp": { "bind": "*", "send": "*" } },
"permissions": [
"serial",
{ "fileSystem":["write"] },
"mdns",
"unlimitedStorage",
"app.window.fullscreen.overrideEsc",
"webview",
"https://api.mixpanel.com/*",
"https://cdn.rawgit.com/Wyliodrin/wyliodrin-app-server/master/package.json",
"system.network"
],
"file_handlers":
{
"any":
{
"extensions":[
"wylioapp"
]
}
},
"webview":
{
"partitions":[
{
"name":"documentation",
"accessible_resources":["/public/documentation/*"]
},
{
"name":"red",
"accessible_resources":["/public/red/*"]
}
]
},
"offline_enabled":true,
"short_name":"Wyliodrin Studio"
}