-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.webmanifest
45 lines (45 loc) · 1.04 KB
/
app.webmanifest
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": "Wordle Without Z",
"short_name": "Wordle w/o Z",
"start_url": "./",
"orientation": "portrait",
"theme_color": "#0088FF",
"background_color": "#B49E3C",
"scope": "./",
"display": "standalone",
"icons": [
{
"src": "./assets/icons/wwz-512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "./assets/icons/wwz-1024.png",
"sizes": "1024x1024",
"type": "image/png"
},
{
"src": "./assets/icons/wwz-512m.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
],
"description": "Tunnel through the iron curtain with a fun wordle game!",
"screenshots": [
{
"src": "./assets/screenshots/game.png",
"sizes": "1081x2340",
"type": "image/png",
"platform": "android",
"label": "Main Game Page"
},
{
"src": "./assets/screenshots/radio.png",
"sizes": "1081x2340",
"type": "image/png",
"platform": "narrow",
"label": "Shortwave Radio Station Table"
}
]
}