I have my HTML5 game hosted in www.mygame.com and I followed on this doc the result show only visit website button in Chrome web store:
The question is how to add my game shortcut in chrome://apps/ and when users click on game icon will link to www.mygame.com
This is my manifest.json
:
{
"manifest_version": 2,
"name": "Math Booster",
"description": "Try to solve basic math in short time",
"version": "1.1",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"app": {
"urls": [
"http://photogap.me/mathbooster"
],
"launch": {
"web_url": "http://photogap.me/mathbooster"
}
},
"permissions": ["unlimitedStorage","notifications"]
}