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
|
{
"name": "CIDR Calculator",
"short_name": "CIDR.xyz",
"description": "Interactive visual CIDR and IP range calculator",
"start_url": "/",
"display": "standalone",
"background_color": "#eff6ff",
"theme_color": "#00bcd4",
"icons": [
{
"src": "/ico/favicon.ico",
"sizes": "48x48",
"type": "image/x-icon"
},
{
"src": "/ico/icon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/ico/icon-192-maskable.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/ico/icon-512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "/ico/icon-512-maskable.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/ico/apple-touch-icon.png",
"sizes": "180x180",
"type": "image/png",
"purpose": "apple-touch-icon"
}
]
}
|