A Web App Manifest (usually named manifest.json) is a simple JSON file that tells the browser about your progressive web application (PWA) and how it should behave when installed on the user's desktop or mobile device.
When you generate a pack using Favicon Party, the exported manifest.json is pre-populated with several highly recommended defaults to save you configuration time:
standalone. This runs the PWA in a focused window without standard browser toolbar chrome, giving it a native-app appearance./, restricting the application space to the root of your web domain.start_url (e.g. /). This serves as the unique identifier for the web application, preventing browser installation conflicts.any, enabling screen rotation support on mobile devices.You can customise these properties in the icon form and see them reflect immediately in the manifest code view:
/index.html, or /?utm_source=pwa to track launcher traffic in analytics.
You can add several advanced manifest fields manually before deploying the generated manifest.json to your server. Some popular additions include:
["window-controls-overlay", "standalone"]). Useful for custom app window border layouts.
["utilities", "productivity"]), which may be used by app store catalogues.
any, you can pin your application to portrait or landscape (e.g., "orientation": "portrait") if your PWA does not support layout rotation.