PWA Manifest Generator

Create a web app manifest.json for your Progressive Web App — all in your browser

App details

These drive the install prompt and splash screen

manifest.json

Link with <link rel="manifest">

{
  "name": "My Awesome App",
  "short_name": "MyApp",
  "description": "A progressive web app built with modern tooling.",
  "start_url": "/",
  "display": "standalone",
  "theme_color": "#2563eb",
  "background_color": "#ffffff",
  "icons": [
    {
      "src": "/icons/icon-192.png",
      "sizes": "192x192",
      "type": "image/png",
      "purpose": "any maskable"
    },
    {
      "src": "/icons/icon-512.png",
      "sizes": "512x512",
      "type": "image/png",
      "purpose": "any maskable"
    }
  ]
}