This is a guide on how to make simple Webstore Apps that link to a site. This is useful if you want to push out links to members of your Google Apps domain. They will appear in as an installed app or you can pin them to the shelf on Chromebooks.
Manifest file - replace the bits in italics with your own stuff.
{
"manifest_version": 2,
"name": "WPS IT User Guide",
"description": "WPS IT User Guide",
"version": "1.1",
"icons": {
"128": "itguide.png"
},
"app": {
"urls": [
"http://wpsit.wheatleypark.org/"
],
"launch": {
"web_url": "http://wpsit.wheatleypark.org/"
}
},
"permissions": [
"unlimitedStorage",
"notifications"
]
}
Manifest file - replace the bits in italics with your own stuff.
{
"manifest_version": 2,
"name": "WPS IT User Guide",
"description": "WPS IT User Guide",
"version": "1.1",
"icons": {
"128": "itguide.png"
},
"app": {
"urls": [
"http://wpsit.wheatleypark.org/"
],
"launch": {
"web_url": "http://wpsit.wheatleypark.org/"
}
},
"permissions": [
"unlimitedStorage",
"notifications"
]
}
Comments
Post a Comment