-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
52 lines (52 loc) · 1.08 KB
/
manifest.json
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
{
"name": "Sun Clock",
"short_name": "SunClock",
"description": "Sun Clock is a 24-hour clock that shows sunrise, sunset, golden hour, and twilight times for your current location. It also shows the current position and phase of the moon, and its rising and setting times.",
"start_url": "./",
"theme_color": "#000",
"background_color": "#ccc",
"display": "standalone",
"icons": [
{
"src": "icons/icon_32.png",
"sizes": "32x32",
"type": "image/png"
},
{
"src": "icons/icon_64.png",
"sizes": "64x64",
"type": "image/png"
},
{
"src": "icons/icon_128.png",
"sizes": "128x128",
"type": "image/png"
},
{
"src": "icons/icon_192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "icons/icon_256.png",
"sizes": "256x256",
"type": "image/png"
},
{
"src": "icons/icon.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "icons/icon.svg",
"sizes": "any",
"type": "image/svg+xml"
},
{
"src": "icons/icon_maskable.svg",
"sizes": "any",
"type": "image/svg+xml",
"purpose": "maskable"
}
]
}