Launching Chrome (Incognito Mode) From Terminal

I am trying to create a mirror image of Chrome-OS on an Ubuntu installation starting with shortcuts. On Chrome-OS, Ctrl + Shift + N will bring up an incognito mode of Chrome. The problem implementing this shortcut is that I don't know if there is a command to open an incognito mode of Chrome. Could someone please help?

2 Answers

For Chromium

chromium-browser --incognito

For Google-chrome

 google-chrome --incognito

Note: get used to see man for cli options, in this case man chromium-browser or man google-chrome

1

For Brave browser

brave-browser --incognito

For Firefox

firefox -private-window

For Google chrome

 google-chrome --incognito

For chromium

chromium-browser --incognito
2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like