This commit is contained in:
Borgal
2022-01-18 13:56:46 +01:00
commit 9c1cf54622
8 changed files with 183 additions and 0 deletions

32
manifest.webmanifest Executable file
View File

@@ -0,0 +1,32 @@
{
"theme_color": "#141414",
"background_color": "#141414",
"display": "fullscreen",
"scope": "/",
"start_url": "/index.php",
"name": "Calculator",
"short_name": "Calculator",
"description": "Kleiner Taschenrechner",
"icons": [
{
"src": "/manifest/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/manifest/icon-256x256.png",
"sizes": "256x256",
"type": "image/png"
},
{
"src": "/manifest/icon-384x384.png",
"sizes": "384x384",
"type": "image/png"
},
{
"src": "/manifest/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}