-
Notifications
You must be signed in to change notification settings - Fork 2
manifest.json
Gérits Aurélien edited this page Apr 9, 2019
·
2 revisions
Le manifeste de l'application Web est un simple fichier JSON qui informe le navigateur de votre application Web et de la manière dont elle doit se comporter lorsqu'elle est "installée" sur le périphérique mobile ou le bureau de l'utilisateur. Chrome ou firefox ont besoin d'un fichier manifest.json pour afficher l'invite Ajouter à l'écran d'accueil.
{
"name": "Magix CMS",
"short_name": "Magix CMS",
"start_url": "../../",
"icons": [{
"src": "img/touch/homescreen48.png",
"sizes": "48x48",
"type": "image/png"
}, {
"src": "img/touch/homescreen72.png",
"sizes": "72x72",
"type": "image/png"
}, {
"src": "img/touch/homescreen96.png",
"sizes": "96x96",
"type": "image/png"
}, {
"src": "img/touch/homescreen144.png",
"sizes": "144x144",
"type": "image/png"
}, {
"src": "img/touch/homescreen168.png",
"sizes": "168x168",
"type": "image/png"
}, {
"src": "img/touch/homescreen192.png",
"sizes": "192x192",
"type": "image/png"
}],
"theme_color": "#7083db",
"background_color": "white",
"dir": "ltr",
"display": "browser",
"orientation": "natural"
}`