webmanifest
A web manifest, formally the Web App Manifest, is a JSON file that provides metadata about a web application so it can be installed and launched like a native app. It is especially important for Progressive Web Apps (PWAs) and helps define how the app should appear and behave when added to a home screen or app launcher.
The manifest is linked from an HTML document using a link element with rel="manifest", for example href="/manifest.webmanifest".
A manifest contains a JSON object with various fields. Essential ones include name and short_name (display text
Browsers use the manifest to present install prompts, generate icons, and configure the launch experience. It
Validation and support vary by browser. Tools like Lighthouse and manifest validators can help check structure