Was ist Web App Manifest Validator?
A web app manifest is a JSON file that tells browsers how your web app should behave when installed on a user's device. It specifies the app name, icons, start URL, display mode, theme colors, and other properties. The manifest is linked from your HTML head with a link tag: <link rel="manifest" href="/site.webmanifest">.
Kurze Antwort
Validate your web app manifest JSON for PWA installability. Required: name, icons (192x192 and 512x512), start_url, display mode (standalone/fullscreen/minimal-ui). The manifest must be linked in the HTML head and served with Content-Type: application/manifest+json.
Einschränkungen
- This validator checks the manifest JSON content only. It does not verify that icon files exist, that the start_url returns 200, or that the service worker is registered and functional.
- The W3C Web App Manifest specification is evolving. New fields like protocol_handlers, shortcuts, and related_applications are not yet validated — check the latest spec for recently added fields.
- Different browsers have different installability requirements. Chrome, Edge, Safari, and Firefox each interpret manifest fields slightly differently. Test on real devices across platforms.
So nutzt du dieses Tool
- Paste the full JSON content of your web app manifest into the text area.
- The tool parses the JSON and checks each field against the W3C Web App Manifest specification.
- Review errors (must fix) and warnings (should fix) and follow the installability checklist before deploying.
Wofür du es nutzen kannst
- Validate a manifest before deploying a PWA to ensure installability requirements are met.
- Debug why a PWA install prompt is not appearing — check the manifest fields that Chrome and Edge require.
- Audit an existing manifest after adding new icons, changing the start URL, or updating theme colors.