Launching Google Chrome/Opera in Kiosk Mode

5

1

I am trying to create a desktop shortcut to launch Chrome or Opera in Kiosk Mode and to a specific URL. I've tried adjusting the target to include /KioskMode after chrome.exe.

Does anyone know the general format? I think I can access the directory properly because the shortcut launches the browser, so I just need to know how to launch in Kiosk to a particular URL. This is in Windows.

Benferrel

Posted 2012-10-30T21:25:59.460

Reputation: 51

Answers

5

For Opera:

  • Windows: C:\Program Files\Opera\opera.exe /KioskMode
  • UNIX: opera -kioskmode
  • Mac: Applications/Opera.app/Contents/MacOS/Opera -kioskmode

and for more explanation: some Opera documentation about kioks mode

ytg

Posted 2012-10-30T21:25:59.460

Reputation: 902

Opera Chromium seems to have removed the kioskmode on OSX and Chrome never enabled it on OSX. – fregante – 2014-06-22T22:42:49.097

-kioskmode is not working on Linux with version 47.0.2631.39. Neither is other flags, such as -fullscreen. – joelostblom – 2017-08-24T09:53:57.270

2

(in addition to ytg's answer)

If you add your desired website URL after /kioskmode, that site will be launched in kiosk mode

C:\Program Files\Opera\opera.exe /KioskMode www.google.de

nixda

Posted 2012-10-30T21:25:59.460

Reputation: 23 233

0

C:\Program Files\Google\Chrome\Application\chrome.exe http://www.google.com --kiosk

Here you are

You can do the same on Linux

Exec=/usr/bin/chromium-browser --noerrdialogs --disable-session-crashed-bubble --disable-infobars --kiosk http://www.google.com 

I found a perfect tutorial but it's in French, still translatable in my opinion. Here

DIDIx13

Posted 2012-10-30T21:25:59.460

Reputation: 306

0

Try something like chrome url --kiosk

Karan

Posted 2012-10-30T21:25:59.460

Reputation: 51 857