Files
python-maze/web/static/manifest.json
2025-11-20 23:43:02 -05:00

40 lines
1011 B
JSON

{
"name": "Maze Generator",
"short_name": "MazeGen",
"description": "Generate and solve mazes with 8 different algorithms. Features animated pathfinding visualization.",
"start_url": "/",
"display": "standalone",
"background_color": "#F5F5F5",
"theme_color": "#FFE500",
"orientation": "portrait-primary",
"icons": [
{
"src": "/static/images/icon-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/static/images/icon-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
}
],
"categories": ["education", "entertainment", "utilities"],
"screenshots": [
{
"src": "/static/images/screenshot-wide.png",
"sizes": "1280x720",
"type": "image/png",
"form_factor": "wide"
},
{
"src": "/static/images/screenshot-mobile.png",
"sizes": "750x1334",
"type": "image/png",
"form_factor": "narrow"
}
]
}