Jul 10, 2015

0 Chrome - always allow access to webcam and microphone in kiosk mode


By enabling kiosk mode and creating guest profile, you can provide a limited full-screen browser.


!  You can use this without kiosk mode too, only for camera and microphone access ! 

1. Create Chrome shortcut.
2. Right Click on Chrome shortcut icon and select Properties.
3. Add record at end of Target line : 
--use-fake-ui-for-media-stream --kiosk "http://localhost"
4. Apply

# Example : 

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --use-fake-ui-for-media-stream --kiosk "http://localhost"

# To exit Chrome kiosk mode, press Alt + F4
# Add edited Chrome shortcut to system startup, to make it start after boot-up.

# If you want to start Chrome in Kiosk mode and disallow the user from navigating away from localhost on port 80:

        --kiosk --host-rules="MAP * localhost:80"

# To allow only camera and microphone use : 

        --use-fake-ui-for-media-stream


0 comments :

Post a Comment

Comment: