-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmanifest.webmanifest
45 lines (45 loc) · 987 Bytes
/
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
{
"lang": "it",
"dir": "ltr",
"name": "App name",
"description": "Your info",
"manifest_version": 5,
"short_name": "Short description",
"icons": [
{
"src": "icons/icon64.png",
"sizes": "64x64",
"type": "image/png"
},
{
"src": "icons/icon128.png",
"sizes": "128x128",
"type": "image/png"
},
{
"src": "icons/icon192.png",
"sizes": "192x1192",
"type": "image/png"
},
{
"src": "icons/icon256.png",
"sizes": "256x256",
"type": "image/png"
},
{
"src": "icons/icon384.png",
"sizes": "384x384",
"type": "image/png"
},
{
"src": "icons/icon512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"scope": "/",
"start_url": "http://your_site/your_app",
"display": "fullscreen",
"theme_color": "aliceblue",
"background_color": "white"
}