Skip to content

Instantly share code, notes, and snippets.

@aarongustafson
Last active January 29, 2020 00:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aarongustafson/b690ca1bf6d0310f51273e90782fb859 to your computer and use it in GitHub Desktop.
Save aarongustafson/b690ca1bf6d0310f51273e90782fb859 to your computer and use it in GitHub Desktop.
Working with multi-lingual manifest files
{
"lang": "en-US",
"name": "Aaron Gustafson",
"short_name": "AaronG",
"scope": "/",
"display": "minimal-ui",
"start_url": "/",
"theme_color": "#27831B",
"description": "The online home and work of Aaron Gustafson.",
"orientation": "any",
"background_color": "#fffcf4",
"icons": [
{
"src": "/i/og-logo.webp",
"type": "image/webp",
"sizes": "800x600"
},
{
"src": "/i/og-logo.png",
"type": "image/png",
"sizes": "800x600"
},
{
"src": "/i/notification-icon.webp",
"type": "image/webp",
"sizes": "256x256"
},
{
"src": "/i/notification-icon.png",
"type": "image/png",
"sizes": "256x256"
},
{
"src": "/favicon.png",
"type": "image/png",
"sizes": "16x16"
}
]
}
<link rel="manifest" hreflang="en" href="/manifest.en.json">
<link rel="manifest" hreflang="es" href="/manifest.es.json">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment