-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathmanifest.json
More file actions
74 lines (74 loc) · 1.83 KB
/
manifest.json
File metadata and controls
74 lines (74 loc) · 1.83 KB
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
{
"name": "notify app",
"short_name": "notify",
"start_url": "/",
"display": "standalone",
"orientation": "portrait",
"background_color": "#000",
"theme_color": "#000",
"categories": [
"utilities",
"productivity"
],
"description": "Notify is a simple app that allows you to receive notifications from a webhook.",
"icons": [
{
"src": "/assets/icons/notify_big.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any"
},
{
"src": "/assets/icons/notify_big.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/assets/icons/notify_small.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any"
},
{
"src": "/assets/icons/notify_small.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
}
],
"screenshots": [
{
"src": "/assets/screenshots/mobile-screenshot.png",
"sizes": "1170x2532",
"type": "image/png",
"form_factor": "narrow",
"label": "App screenshot with example notification",
"platform": "ios"
},
{
"src": "/assets/screenshots/mobile-screenshot.png",
"sizes": "1170x2532",
"type": "image/png",
"form_factor": "narrow",
"label": "App screenshot with example notification",
"platform": "android"
},
{
"src": "/assets/screenshots/desktop-screenshot.png",
"sizes": "2038x1301",
"type": "image/png",
"form_factor": "wide",
"label": "Home screen of Awesome App",
"platform": "windows"
},
{
"src": "/assets/screenshots/desktop-screenshot.png",
"sizes": "2038x1301",
"type": "image/png",
"form_factor": "wide",
"label": "Home screen of Awesome App",
"platform": "macos"
}
]
}