-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.webmanifest
45 lines (45 loc) · 954 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
{
"id": "/workers",
"name": "Service Worker",
"short_name": "Service Worker Install",
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display_override": ["window-control-overlay", "minimal-ui"],
"display": "standalone",
"scope": ".",
"start_url": "/",
"orientation": "portrait",
"description": "Service Worker example",
"icons": [
{
"src": "./public/logo/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "./public/logo/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"shortcuts": [
{
"name": "Home page",
"url": "/",
"icons": [
{
"src": "./public/logo/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
}
]
}
],
"screenshots": [
{
"src": "./public/logo/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}