Web App Manifest Generator
Generate a PWA web app manifest.json with all required fields.
Icons
Place your app icons in /icons/ directory. Recommended sizes: 192×192 and 512×512 PNG files.
manifest.json
{
"name": "My App",
"short_name": "App",
"description": "A progressive web application.",
"start_url": "/",
"display": "standalone",
"theme_color": "#4f46e5",
"background_color": "#ffffff",
"orientation": "any",
"scope": "/",
"lang": "en",
"icons": [
{
"src": "/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
]
}Часто задаваемые вопросы
Comments & Feedback
Comments are powered by Giscus. Sign in with GitHub to leave a comment.