Last active
January 20, 2025 13:17
-
-
Save skhaz/0c209b6da5c1ffd3b1d04bf0f99265a1 to your computer and use it in GitHub Desktop.
Chrome Kiosk Mode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| google-chrome --kiosk https://www.google.com \ | |
| --no-first-run \ | |
| --disable-infobars \ | |
| --disable-translate \ | |
| --disable-pinch \ | |
| --overscroll-history-navigation=0 \ | |
| --disable-gesture-requirement-for-media-playback \ | |
| --disable-sync \ | |
| --disable-features=TranslateUI \ | |
| --no-default-browser-check \ | |
| --disable-notifications \ | |
| --disable-save-password-bubble \ | |
| --disable-background-networking \ | |
| --disable-component-extensions-with-background-pages \ | |
| --disable-domain-reliability \ | |
| --disable-default-apps \ | |
| --disable-popup-blocking \ | |
| --disable-prompt-on-repost \ | |
| --autoplay-policy=no-user-gesture-required \ | |
| --start-fullscreen \ | |
| --hide-scrollbars \ | |
| --disable-crash-reporter \ | |
| --disable-hang-monitor \ | |
| --noerrdialogs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment