-
-
Notifications
You must be signed in to change notification settings - Fork 264
/
manifest.json
42 lines (42 loc) · 1.15 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
{
"name": "Progressive Web App",
"short_name": "Demo PWA",
"description": "Demo for progressive web app with push notifications, background sync etc.",
"start_url": "./index.html?utm=homescreen",
"display": "standalone",
"orientation": "portrait",
"background_color": "#f5f5f5",
"theme_color": "#29434d",
"icons": [
{
"src": "./images/icons/android-chrome-192x192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "./images/icons/android-chrome-512x512.png",
"type": "image/png",
"sizes": "512x512"
},
{
"src": "./images/icons/android-maskable-192x192.png",
"type": "image/png",
"sizes": "192x192",
"purpose": "maskable"
},
{
"src": "./images/icons/android-maskable-512x512.png",
"type": "image/png",
"sizes": "512x512",
"purpose": "maskable"
}
],
"author": {
"name": "Gokulakrishnan Kalaikovan",
"website": "https://gokulkrishh.github.io",
"github": "https://github.com/gokulkrishh",
"source-repo": "https://github.com/gokulkrishh/demo-progressive-web-app"
},
"gcm_sender_id": "847244712742",
"gcm_user_visible_only": true
}