-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
manifest.json
61 lines (61 loc) · 1.25 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
{
"short_name": "Notepad",
"name": "Notepad",
"description": "An offline-capable, quick, and distraction-free Notepad",
"display": "standalone",
"icons": [
{
"src": "img/icon-48.png",
"sizes": "48x48",
"type": "image/png"
},
{
"src": "img/icon-96.png",
"sizes": "96x96",
"type": "image/png"
},
{
"src": "img/icon-144.png",
"sizes": "144x144",
"type": "image/png"
},
{
"src": "img/icon-196.png",
"sizes": "196x196",
"type": "image/png"
}
],
"screenshots": [
{
"src": "img/screenshot1.png",
"type": "image/png",
"sizes": "540x720"
},
{
"src": "img/screenshot2.png",
"type": "image/png",
"sizes": "540x720"
},
{
"src": "img/screenshot-desktop-dark.png",
"type": "image/png",
"form_factor": "wide",
"sizes": "2460x1674"
},
{
"src": "img/screenshot-desktop-light.png",
"type": "image/png",
"form_factor": "wide",
"sizes": "2460x1674"
}
],
"start_url": "index.html",
"theme_color": "#3F51B5",
"background_color": "#EEEEEE",
"url_handlers": [
{
"origin": "https://notepad.js.org"
}
],
"display_override": ["minimal-ui"]
}