Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Running Chrome with extension in kiosk mode

I really need to run Chrome in kiosk mode with an extension. If I start chrome with --app-id=xxxx it runs the app, but --kiosk is ignored. If I start it with --kiosk the app-id is ignored.

Is there any way to do both? Starting in full screen (F11 mode) is not going to work because of the bubble window at the top and the user can exit.

like image 267
David_24 Avatar asked Jan 16 '12 21:01

David_24


1 Answers

Try:

--user-data-dir=$(mktemp -d) 

This works for me in Chrome 43, but don't load extensions. How to enabled extensions in kiosk mode on windows 7?

like image 58
user3563850 Avatar answered Oct 20 '22 18:10

user3563850