Generate a complete web app manifest.json for your Progressive Web App (PWA). Configure icons, theme colors, display mode, and more. Instant client-side generation with download.
A web app manifest is a JSON file that tells the browser about your Progressive Web App (PWA) and how it should behave when installed on the user's desktop or mobile device. It includes information like the app's name, icons, theme colors, and display mode.
A web app manifest is a JSON file that provides information about a web application, such as its name, icons, and theme colors. It enables the app to be installed on a device's home screen and behave like a native app.
Place the manifest.json file in the root directory of your website (e.g., https://example.com/manifest.json) and reference it in your HTML head with: <link rel="manifest" href="/manifest.json" />
At minimum, include 192x192 and 512x512 icons. The 192x192 icon is used for the home screen icon, and 512x512 is used for the splash screen. You can also include other sizes for better compatibility.
Theme color affects the browser's address bar and UI elements. Background color is shown as the splash screen background while your app loads when launched from the home screen.