Question no longer relevant. Answers may not be verified
I have created a App in the Chrome Web Store and made it private within the company that I wrote it for. It's primary purpose is to be used as a Kiosk App in a couple of Chromebooks that we purchased for a store.
Nearly everything is working well, except the app, after installed, does not have an ID that is valid in "Manage kiosk applications." It also does not show in chrome://extensions, though it does show up in "Apps Developer Tool." It also does enable Kiosk settings, it just isn't valid for use. Entering either the App ID taken from Apps Developer Tool or the store url report an error "... Invalid application."
Disable kiosk applications is not enabled in chrome://flags, and I have checked that the feature is working by testing using the ID from another app.
Manifest below:
{
"manifest_version": 2,
"name": "SoCal Rafting Kiosk",
"description":"SoCal Rafting",
"version": "1.3",
"kiosk_enabled": true,
"icons": { "128": "128.png" },
"app": {
"urls": [
"http://www.socalrafting.com/"
],
"launch": {
"web_url": "http://www.socalrafting.com/"
}
},
"icons": {
"128": "128.png"
}
}
Any help or suggestions would be greatly appreciated.