Commit
·
a18e182
1
Parent(s):
58ae8be
Upload Manifest.json
Browse files- Manifest.json +92 -0
Manifest.json
ADDED
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
```json
|
3 |
+
{
|
4 |
+
"name": "HustleCab",
|
5 |
+
"short_name": "hustlecab",
|
6 |
+
"description": "On-Demand Ride-Sharing and Delivery App",
|
7 |
+
"start_url": "/",
|
8 |
+
"display": "standalone",
|
9 |
+
"background_color": "#ffffff",
|
10 |
+
"theme_color": "#4caf50",
|
11 |
+
"icons": [
|
12 |
+
{
|
13 |
+
"src": "/icons/icon-192x192.png",
|
14 |
+
"sizes": "192x192",
|
15 |
+
"type": "image/png"
|
16 |
+
},
|
17 |
+
{
|
18 |
+
"src": "/icons/icon-512x512.png",
|
19 |
+
"sizes": "512x512",
|
20 |
+
"type": "image/png"
|
21 |
+
}
|
22 |
+
],
|
23 |
+
"scope": "/",
|
24 |
+
"categories": ["Transportation", "Delivery"],
|
25 |
+
"dir": "ltr",
|
26 |
+
"lang": "en-US",
|
27 |
+
"orientation": "any",
|
28 |
+
"shortcuts": [
|
29 |
+
{
|
30 |
+
"name": "Quick Ride",
|
31 |
+
"short_name": "Quick",
|
32 |
+
"description": "Quickly request a ride",
|
33 |
+
"url": "/quick-ride",
|
34 |
+
"icons": [
|
35 |
+
{
|
36 |
+
"src": "/icons/quick-ride.png",
|
37 |
+
"sizes": "192x192",
|
38 |
+
"type": "image/png"
|
39 |
+
}
|
40 |
+
]
|
41 |
+
},
|
42 |
+
{
|
43 |
+
"name": "Express Delivery",
|
44 |
+
"short_name": "Express",
|
45 |
+
"description": "Swift on-demand delivery service",
|
46 |
+
"url": "/express-delivery",
|
47 |
+
"icons": [
|
48 |
+
{
|
49 |
+
"src": "/icons/express-delivery.png",
|
50 |
+
"sizes": "192x192",
|
51 |
+
"type": "image/png"
|
52 |
+
}
|
53 |
+
]
|
54 |
+
}
|
55 |
+
],
|
56 |
+
"custom_elements": [
|
57 |
+
{
|
58 |
+
"name": "ride-counter",
|
59 |
+
"content": "3"
|
60 |
+
},
|
61 |
+
{
|
62 |
+
"name": "delivery-counter",
|
63 |
+
"content": "5"
|
64 |
+
}
|
65 |
+
],
|
66 |
+
"screenshots": [
|
67 |
+
{
|
68 |
+
"src": "/screenshots/screenshot1.png",
|
69 |
+
"sizes": "1280x720",
|
70 |
+
"type": "image/png"
|
71 |
+
},
|
72 |
+
{
|
73 |
+
"src": "/screenshots/screenshot2.png",
|
74 |
+
"sizes": "1280x720",
|
75 |
+
"type": "image/png"
|
76 |
+
}
|
77 |
+
],
|
78 |
+
"gcm_sender_id": "your-gcm-sender-id",
|
79 |
+
"gcm_user_visible_only": true,
|
80 |
+
"permissions": [
|
81 |
+
"geolocation",
|
82 |
+
"notifications"
|
83 |
+
],
|
84 |
+
"serviceworker": {
|
85 |
+
"src": "/service-worker.js",
|
86 |
+
"scope": "/",
|
87 |
+
"use_cache_storage": true,
|
88 |
+
"use_cache_system": true
|
89 |
+
}
|
90 |
+
}
|
91 |
+
```
|
92 |
+
|