Skip to content

Instantly share code, notes, and snippets.

@Verdi
Created November 11, 2018 22:12
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 Verdi/5598f57125b08383994c361cc25cf981 to your computer and use it in GitHub Desktop.
Save Verdi/5598f57125b08383994c361cc25cf981 to your computer and use it in GitHub Desktop.
Web manifest for twine game
{
"lang": "en",
"name": "My Game",
"short_name": "My Game",
"description": "My super awesome twine game",
"start_url": "/index.html",
"background_color": "#000000",
"theme_color": "#202020",
"display": "standalone",
"icons": [{
"src": "icon-256.png",
"sizes": "256x256",
"type": "image/png"
}, {
"src": "icon-32.png",
"sizes": "32x32",
"type": "image/png"
}, {
"src": "icon-192.png",
"sizes": "192x192",
"type": "image/png"
}, {
"src": "icon-180.png",
"sizes": "180x180",
"type": "image/png"
}, {
"src": "icon-270.png",
"sizes": "270x270",
"type": "image/png"
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment