"Web App Manifest"
The Web App manifest provides information about an application (such as name, author, icon, and description) in a JSON Tex T file. The purpose of the manifest is to install Web applications to the homescreen of a device, providing users with quicker ACC ESS and a richer experience.
Web App manifests is part of a collection of web technologies called Progressive Web apps, which is Web applications tha T can is installed to the homescreen of a device without needing the user to go through an app store, along with other caps Abilities such as being available offline and receiving push notifications.
Web app manifests is deployed in your HTML pages using a link tag in the head of your document:
<link rel="manifest" href="/manifest.json">
"display": "standalone"
Display Mode |
Description |
Fallback Display Mode |
fullscreen |
All of the available display area are used and no user agent Chrome is shown. |
standalone |
standalone |
The application would look and feel like a standalone application. This can include the application have a different window, its own icon in the Application Launcher, etc. In this mode, the user agent would exclude UI elements for controlling navigation, and can include other UI elements such a s a status bar. |
minimal-ui |
minimal-ui |
The application would look and feel like a standalone application, but would have a minimal set of UI elements for Controlli Ng navigation. The elements would vary by browser. |
browser |
browser |
The application opens in a Conventional browser tab or new window, depending on the browser and platform. This is the default. |
(None)
|
Reference: Https://developer.mozilla.org/en-US/docs/Web/Manifest
Web App Manifest