I'm in the process of developing an application that is able to function both in kiosk mode and regular mode (such as opening from a Chrome browser). However, I need certain features to be restricted to kiosk mode only. How can I determine if the application is running in kiosk mode or normal fullscreen/windowed mode?
Below is a portion of my manifest.json file for reference:
{
"manifest_version": 2,
"kiosk_enabled": true,
"kiosk_only": false
}