-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
69 lines (69 loc) · 1.8 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
{
"short_name": "",
"name": "",
"description": "",
"id": "https://site.com",
"start_url": "/?source=homepage",
"background_color": "white",
"theme_color": "black",
"display_override": ["window-control-overlay", "minimal-ui"],
"display": "browser",
"scope": "/",
"icons": [
{
"src": "src/assets/images/icons/main.png",
"type": "image/png",
"sizes": "192x192"
}
],
"screenshots": [
{
"src": "src/assets/images/screenshots/screenshot1.png",
"type": "image/png",
"sizes": "540x720"
},
{
"src": "src/assets/images/screenshots/screenshot2.jpg",
"type": "image/jpg",
"sizes": "540x720"
}
],
"shortcuts": [
{
"name": "Contact Us",
"short_name": "Contact",
"description": "Get in touch",
"url": "/contact?source=pwa",
"icons": [
{
"src": "src/assets/images/icons/contact.png",
"sizes": "192x192"
}
]
},
{
"name": "Frequently Asked Questions",
"short_name": "FAQs",
"description": "Frequently Asked Questions",
"url": "/faq?source=pwa",
"icons": [
{
"src": "src/assets/images/icons/faq.png",
"sizes": "192x192"
}
]
},
{
"name": "Schedule an Appointment",
"short_name": "Make an Appointment",
"description": "Make a 1:1 Consultation",
"url": "/appointment?source=pwa",
"icons": [
{
"src": "src/assets/images/icons/appointment.png",
"sizes": "192x192"
}
]
}
]
}