how to detect if the user using Google Chrome in kiosk mode?
I want to know if the user is using chrome in kiosk mode if it is not for me to display a message to put teaching so she can use the resources that only the kiosk mode can provide
how to detect if the user using Google Chrome in kiosk mode?
I want to know if the user is using chrome in kiosk mode if it is not for me to display a message to put teaching so she can use the resources that only the kiosk mode can provide
Copyright © 2021 Jogjafile Inc.
You can check the
isKioskSession
property on thelaunchData
object you get from the chrome.app.runtime.onLaunched event.EDIT
The above answer assumes that you are in a Chrome app. If you are trying to detect whether a page is in a Chrome browser launched with the --kiosk option, I don't know of a way to detect that. However, this is functionally equivalent to running in fullscreen mode, which you can detect with the Fullscreen API.