It is currently April 25th, 2024, 1:34 pm

How to Open Browser in incognito mode

Get help with creating, editing & fixing problems with skins
Morsmodre
Posts: 22
Joined: December 14th, 2020, 3:04 am

How to Open Browser in incognito mode

Post by Morsmodre »

I'm trying to make an icon launch firefox in incognito mode, with:

Code: Select all

LeftMouseUpAction=["C:\Program Files\Firefox Developer Edition\firefox.exe --incognito"]
This doesn't work.

Closing quotes before '--incognito' opens regular firefox window

Code: Select all

LeftMouseUpAction=["C:\Program Files\Firefox Developer Edition\firefox.exe" --incognito]
Edit: Nevermind. Apparently, --incognito works only with chrome.
Morsmodre
Posts: 22
Joined: December 14th, 2020, 3:04 am

Re: How to Open Browser in incognito mode

Post by Morsmodre »

I've figured it out. Have to use -private-window with Firefox, instead of --incognito

Code: Select all

"C:\Program Files\Firefox Developer Edition\firefox.exe" -private-window