-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
45 lines (45 loc) · 966 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
41
42
43
44
45
{
"name": "Carl passwords",
"short_name": "Carl Passwords",
"description": "Generate a Carl Password.",
"version": "0.1",
"display": "standalone",
"theme_color": "#24933F",
"manifest_version": 2,
"orientation": "any",
"start_url": "/",
"background_color": "#FFFFFF",
"lang": "en",
"icons": [{
"src": "img/favicon.png",
"sizes": "16x16",
"type": "image/png"
}, {
"src": "img/favicon.svg",
"sizes": "any",
"type": "image/svg+xml"
},
{
"src": "img/maskable.svg",
"sizes": "any",
"purpose": "maskable",
"type": "image/svg+xml"
}
],
"screenshots": [
{
"src": "img/screenshots/mobile.png",
"type": "image/png",
"purpose": "any",
"sizes": "562x1216",
"form_factor": "narrow"
},
{
"src": "img/screenshots/desktop.png",
"sizes": "1920x1080",
"type": "image/png",
"form_factor": "wide",
"purpose": "any"
}
]
}