A Web App Manifest is a file that permits a user to install your application (website) in:
without an app store.
You can see it by going to the following URL:
for this website:
You can see your manifest in the Application tab of the devtool
The JSON file contains several information
{
"display": "standalone",
"scope": "/",
"name": "ComboStrap",
"short_name": "ComboStrap",
"description": "The most performant way to Web publication",
"start_url": "/",
"background_color": "#fff",
"theme_color": "#dee7ec",
"icons": [{
"src": "http://localhost:81/_media/logo.svg",
"sizes": "any",
"type": "image/svg+xml"
}, {
"src": "http://localhost:81/_media/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
}
]
}