Strap - Web App Manifest
Table of Contents
1 - About
A Web App Manifest is a JSON file that permits a Web App to be installed to a mobile or computer's homescreen without an app store.
2 - Articles Related
3 - URL
You can see it by going to the following URL:
for this website:
4 - Schema
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": "17x17 512x512",
"type": "image/svg+xml"
}, {
"src": "http://localhost:81/_media/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
}
]
}
- name is the title configuration
- description is the tagline configuration
- icons are automatically recognized. See ComboStrap Getting Started - How to configure the Favicons
5 - Configuration
- manifest is a dokuwiki action and should not be disabled.
- icons should be put at the root media library. logo.svg and android-chrome-192×192.png are taken into account. See ComboStrap Getting Started - How to configure the Favicons