forked from matkl/average-color
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.webmanifest
51 lines (51 loc) · 1.34 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
{
"theme_color": "#008080",
"background_color": "#008080",
"display": "minimal-ui",
"orientation": "any",
"scope": "/",
"start_url": "/",
"name": "Average Colour",
"description": "A tool to find the average colour in an image.",
"short_name": "AvgColour",
"shortcuts": [
{
"name": "Homepage",
"short_name": "Home",
"description": "Homepage",
"url": "/",
"icons": [
{ "src": "icons/home-icon-192x192.png", "sizes": "192x192" }
]
},
{
"name": "About this app",
"short_name": "About",
"description": "View information regarding this app",
"url": "/about",
"icons": [{ "src": "icons/about-icon-192x192.png", "sizes": "192x192" }]
}
],
"icons": [
{
"src": "icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "icons/icon-256x256.png",
"sizes": "256x256",
"type": "image/png"
},
{
"src": "icons/icon-384x384.png",
"sizes": "384x384",
"type": "image/png"
},
{
"src": "icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}