forked from Offroaders123/Smart-Text-Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.webmanifest
89 lines (89 loc) · 2.45 KB
/
manifest.webmanifest
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
{
"name": "メモ帳",
"short_name": "メモ帳",
"description": "A PWA text editor wihci can read SJIS text files. A fork program from Smart Text Edior.",
"start_url": "./",
"scope": "./",
"display": "standalone",
"display_override": ["window-controls-overlay"],
"theme_color": "#1e1e1e",
"background_color": "#1e1e1e",
"icons": [
{
"src": "resources/app-192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "resources/app-512.png",
"type": "image/png",
"sizes": "512x512"
},
{
"src": "resources/app-1024.png",
"type": "image/png",
"sizes": "1024x1024"
},
{
"platform": "macOS",
"src": "resources/app-macOS-192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"platform": "macOS",
"src": "resources/app-macOS-512.png",
"type": "image/png",
"sizes": "512x512"
},
{
"platform": "macOS",
"src": "resources/app-macOS-1024.png",
"type": "image/png",
"sizes": "1024x1024"
},
{
"src": "resources/app-maskable-192.png",
"type": "image/png",
"sizes": "192x192",
"purpose": "maskable"
},
{
"src": "resources/app-maskable-512.png",
"type": "image/png",
"sizes": "512x512",
"purpose": "maskable"
},
{
"src": "resources/app-maskable-1024.png",
"type": "image/png",
"sizes": "1024x1024",
"purpose": "maskable"
}
],
"shortcuts": [
],
"file_handlers": [
{
"action": "./",
"accept": {
"text/*": [".txt",".html",".css",".js",".php",".json",".webmanifest",".bbmodel",".xml",".yaml",".yml",".dist",".config",".ini",".md",".markdown",".mcmeta",".lang",".properties",".uidx",".material",".h",".fragment",".vertex",".fxh",".hlsl",".ihlsl"],
"image/svg+xml": [".svg"]
}
}
],
"share_target": {
"action": "./",
"method": "POST",
"enctype": "multipart/form-data",
"params": {
"url": "share-target",
"files": [
{
"name": "file",
"accept": ["text/*",".txt",".html",".css",".js",".php",".json",".webmanifest",".bbmodel",".xml",".yaml",".yml",".dist",".config",".ini",".md",".markdown",".mcmeta",".lang",".properties",".uidx",".material",".h",".fragment",".vertex",".fxh",".hlsl",".ihlsl","image/svg+xml",".svg"]
}
]
}
}
}