Created
March 18, 2016 19:26
-
-
Save leandroh/3b047b731cd2a21540a4 to your computer and use it in GitHub Desktop.
Web App Manifest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"short_name": "Pokedex.org", | |
"name": "Pokedex.org", | |
"display": "standalone", | |
"icons": [ | |
{ | |
"src": "img/icon-48.png", | |
"sizes": "48x48", | |
"type": "image/png" | |
}, | |
{ | |
"src": "img/icon-96.png", | |
"sizes": "96x96", | |
"type": "image/png" | |
}, | |
{ | |
"src": "img/icon-144.png", | |
"sizes": "144x144", | |
"type": "image/png" | |
}, | |
{ | |
"src": "img/icon-196.png", | |
"sizes": "196x196", | |
"type": "image/png" | |
} | |
], | |
"start_url": "index.html?launcher=true", | |
"theme_color": "#a040a0", | |
"background_color": "#EEEEEE" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment