1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
"name": "Wordly",
"short_name": "Wordly",
"description": "A quick PWA clone of Wordle",
"categories": ["games"],
"lang": "en-US",
"start_url": "/",
"scope": "/",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#000000",
"icons": [
{"type": "image/png", "sizes": "48x48", "src": "img/favicon-48.png" },
{"type": "image/png", "sizes": "96x96", "src": "img/favicon-96.png" },
{"type": "image/png", "sizes": "192x192", "src": "img/favicon-192.png", "purpose": "maskable any"},
{"type": "image/png", "sizes": "256x256", "src": "img/favicon-256.png", "purpose": "maskable any"},
{"type": "image/png", "sizes": "512x512", "src": "img/favicon-512.png", "purpose": "maskable any"},
{"type": "image/png", "sizes": "72x72", "src": "img/apple-touch-icon-72.png" },
{"type": "image/png", "sizes": "144x144", "src": "img/apple-touch-icon-144.png"},
{"type": "image/png", "sizes": "168x168", "src": "img/apple-touch-icon-168.png"}
]
}
|