我在 www.mygame.com 上托管了我的 HTML5 游戏,我在此文档上关注了结果显示仅访问 Chrome 网上商店中的网站按钮:
问题是如何在 chrome://apps/ 中添加我的游戏快捷方式,当用户点击游戏图标时将链接到 www.mygame.com
这是我的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"]
}