-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.webmanifest
More file actions
36 lines (36 loc) · 922 Bytes
/
app.webmanifest
File metadata and controls
36 lines (36 loc) · 922 Bytes
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
{
"$schema": "https://json.schemastore.org/web-manifest-combined.json",
"name": "Unicode Visualization",
"short_name": "UnicodeVisualization",
"start_url": "index.html",
"display": "standalone",
"description": "Single page web app to visualize Unicode glyphs, characters and code points.",
"background_color": "#dddddd",
"theme_color": "#448aff",
"lang": "en",
"orientation": "portrait-primary",
"icons": [
{
"src": "./images/app_icon_512_maskable.png",
"type": "image/png",
"sizes": "512x512",
"purpose": "maskable"
},
{
"src": "./images/app_icon_512.png",
"type": "image/png",
"sizes": "512x512",
"purpose": "any"
},
{
"src": "./images/app_icon_1024.png",
"type": "image/png",
"sizes": "1024x1024"
},
{
"src": "./images/app_icon.png",
"sizes": "144x144",
"type": "image/png"
}
]
}