-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
40 lines (40 loc) · 909 Bytes
/
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
{
"name": "Task List webapp",
"short_name": "TaskList",
"description": "Manage your task list.",
"categories": ["business", "productivity", "utilities"],
"start_url": "./index.html",
"scope": "./index.html",
"display": "standalone",
"orientation": "any",
"background_color": "#333",
"theme_color": "#06c",
"icons": [{
"src": "img/icon16.png",
"sizes": "16x16",
"type": "image/png"
}, {
"src": "img/icon32.png",
"sizes": "32x32",
"type": "image/png"
}, {
"src": "img/icon180.png",
"sizes": "180x180",
"type": "image/png"
}, {
"src": "img/icon192.png",
"sizes": "192x192",
"type": "image/png"
}, {
"src": "img/icon512.png",
"sizes": "512x512",
"type": "image/png"
}],
"screenshots": [{
"src": "screenshots/dark.png",
"sizes": "550x600"
}, {
"src": "screenshots/light.png",
"sizes": "550x600"
}]
}