-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.webmanifest
74 lines (74 loc) · 1.61 KB
/
app.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
{
"name": "PAMM",
"description": "Pretty Awesome Math Markup – A user-friendly LaTeX alternative with a live editor.",
"start_url": "./",
"scope": "./",
"display": "standalone",
"display_override": ["window-controls-overlay"],
"categories": ["education"],
"lang": "en",
"theme_color": "oklch(0.29 0.016 290.4)",
"background_color": "#2f3034",
"icons": [
{
"src": "./assets/icon.png",
"type": "image/png",
"sizes": "512x512",
"purpose": "any monochrome"
},
{
"src": "./assets/maskable.png",
"type": "image/png",
"sizes": "1024x1024",
"purpose": "maskable"
}
],
"file_handlers": [
{
"action": "./",
"accept": {
"text/pretty-awesome-math-markup": [
".pamm"
]
},
"icons": [
{
"src": "./assets/icon.png",
"type": "image/png",
"sizes": "512x512"
}
],
"launch_type": "multiple-clients"
}
],
"screenshots": [
{
"src": "./assets/screenshot-editor-desktop.png",
"sizes": "1920x1080",
"type": "image/png",
"label": "a screenshot of the PAMM editor",
"form_factor": "wide"
},
{
"src": "./assets/screenshot-files-desktop.png",
"sizes": "1920x1080",
"type": "image/png",
"label": "a screenshot of the PAMM files overview",
"form_factor": "wide"
},
{
"src": "./assets/screenshot-editor-mobile.png",
"sizes": "808x1588",
"type": "image/png",
"label": "a screenshot of the PAMM editor",
"form_factor": "narrow"
},
{
"src": "./assets/screenshot-files-mobile.png",
"sizes": "808x1588",
"type": "image/png",
"label": "a screenshot of the PAMM files overview",
"form_factor": "narrow"
}
]
}