forked from ellite/Wallos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
87 lines (87 loc) · 2.76 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
84
85
86
87
{
"short_name": "Wallos",
"name": "Wallos - Subscription Tracker",
"icons": [
{
"src": "images/icon/android-chrome-192x192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "images/icon/android-chrome-512x512.png",
"type": "image/png",
"sizes": "512x512"
},
{
"src": "images/icon/maskable_icon_x192.png",
"type": "image/png",
"sizes": "192x192",
"purpose": "maskable"
},
{
"src": "images/icon/maskable_icon_x512.png",
"type": "image/png",
"sizes": "512x512",
"purpose": "maskable"
}
],
"start_url": "/",
"id": "com.wallos.app",
"shortcuts": [
{
"name": "Subscriptions",
"short_name": "Subscriptions",
"description": "View your subscriptions",
"url": "index.php",
"icons": [{ "src": "images/siteicons/pwa/subscriptions.png", "sizes": "96x96" }]
},
{
"name": "Calendar",
"short_name": "Calendar",
"description": "View your calendar",
"url": "calendar.php",
"icons": [{ "src": "images/siteicons/pwa/calendar.png", "sizes": "96x96" }]
},
{
"name": "Stats",
"short_name": "Stats",
"description": "View your statistics",
"url": "stats.php",
"icons": [{ "src": "images/siteicons/pwa/stats.png", "sizes": "96x96" }]
},
{
"name": "Settings",
"short_name": "Settings",
"description": "Change your settings",
"url": "settings.php",
"icons": [{ "src": "images/siteicons/pwa/settings.png", "sizes": "96x96" }]
},
{
"name": "About",
"short_name": "About",
"description": "More info about Wallos",
"url": "about.php",
"icons": [{ "src": "images/siteicons/pwa/about.png", "sizes": "96x96" }]
}
],
"screenshots": [
{
"src": "images/screenshots/desktop.png",
"sizes": "1000x750",
"type": "image/png",
"form_factor": "wide"
},
{
"src": "images/screenshots/mobile.png",
"sizes": "600x1000",
"type": "image/png"
}
],
"background_color": "#FFFFFF",
"display": "standalone",
"scope": "/",
"theme_color": "#FFFFFF",
"description": "Wallos is a personal subscription tracker that helps you keep track of your subscriptions and save money.",
"orientation": "portrait-primary",
"display_override": ["window-controls-overlay"]
}