Forums
New posts
Articles
Product Reviews
Policies
FAQ
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Menu
Log in
Register
Install the app
Install
Forums
General Discussions
Switcher Hangout (Windows to Mac)
How to run Chromium with incognito flag as default?
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Lifeisabeach" data-source="post: 1904514" data-attributes="member: 38864"><p>I had to use Automator to make an application to run a custom AppleScript to launch Brave for me in incognito mode. Create a new Automator action to save as an Application; add the action <em>Run AppleScript</em>. The script that I had to use for Brave is as follows (modified for Chromium):</p><p></p><p>[CODE]on run {input, parameters}</p><p> </p><p> (do shell script "open -a /Applications/Chromium.app --args -incognito")</p><p> </p><p> return input</p><p>end run[/CODE]</p><p></p><p>Click on the Play icon to test it. If it works, save it. Going forward, you'll run this app you just made instead of Chromium directly. This app will simply launch Chromium in incognito mode.</p><p></p><p>EDIT: here's some more reading where several people have posted various script options.</p><p>[URL unfurl="true"]https://apple.stackexchange.com/questions/25375/how-do-i-open-google-chrome-in-incognito-mode-by-default[/URL]</p></blockquote><p></p>
[QUOTE="Lifeisabeach, post: 1904514, member: 38864"] I had to use Automator to make an application to run a custom AppleScript to launch Brave for me in incognito mode. Create a new Automator action to save as an Application; add the action [I]Run AppleScript[/I]. The script that I had to use for Brave is as follows (modified for Chromium): [CODE]on run {input, parameters} (do shell script "open -a /Applications/Chromium.app --args -incognito") return input end run[/CODE] Click on the Play icon to test it. If it works, save it. Going forward, you'll run this app you just made instead of Chromium directly. This app will simply launch Chromium in incognito mode. EDIT: here's some more reading where several people have posted various script options. [URL unfurl="true"]https://apple.stackexchange.com/questions/25375/how-do-i-open-google-chrome-in-incognito-mode-by-default[/URL] [/QUOTE]
Verification
Name this item 🌈
Post reply
Forums
General Discussions
Switcher Hangout (Windows to Mac)
How to run Chromium with incognito flag as default?
Top