-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
83 lines (83 loc) · 2.13 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"default_locale": "en",
"short_name": "Maciek Iwaniuk",
"name": "Maciek Iwaniuk",
"description": "Portfolio - Maciek Iwaniuk",
"background": {
"service_worker": "service-worker.js"
},
"id": "/",
"start_url": "/",
"scope": "/",
"background_color": "#00b3ff",
"theme_color": "#00b3ff",
"display": "standalone",
"orientation": "portrait-primary",
"purpose": "any maskable",
"icons": [
{
"src": "img/icons/favicon-16x16.png",
"type": "image/png",
"sizes": "16x16"
},
{
"src": "img/icons/favicon-32x32.png",
"type": "image/png",
"sizes": "32x32"
},
{
"src": "img/icons/72x72.png",
"type": "image/png",
"sizes": "72x72"
},
{
"src": "img/icons/96x96.png",
"type": "image/png",
"sizes": "96x96",
"purpose": "maskable"
},
{
"src": "img/icons/120x120.png",
"type": "image/png",
"sizes": "120x120"
},
{
"src": "img/icons/128x128.png",
"type": "image/png",
"sizes": "128x128"
},
{
"src": "img/icons/144x144.png",
"type": "image/png",
"sizes": "144x144",
"purpose": "maskable"
},
{
"src": "img/icons/152x152.png",
"type": "image/png",
"sizes": "152x152"
},
{
"src": "img/icons/180x180.png",
"type": "image/png",
"sizes": "180x180"
},
{
"src": "img/icons/android-chrome-192x192.png",
"type": "image/png",
"sizes": "192x192",
"purpose": "maskable"
},
{
"src": "img/icons/384x384.png",
"type": "image/png",
"sizes": "384x384"
},
{
"src": "img/icons/android-chrome-512x512.png",
"type": "image/png",
"sizes": "512x512",
"purpose": "maskable"
}
]
}