Create an Application that Start Google Chrome in Incognito Mode
Posted on : 09-24-2009 | By : Cool Geex | In : Google, Script Editor
1
This Post will show you how to create an Application from the script provides in the post Start Google Chrome In Incognito Mode
Just Follow the Video
If you like the video, Please Rate It
Related posts:
- Start Google Chrome in Incognito Mode
- Google Chrome Incognito – Mac OSX Perfect Solution
- Create Your Own Application Using Fluidapp
- Create your own list of email addresses from your inbox








Hej, yes it’s great but often chrome doesn’t notice the “Google” window because of the delay in loading the page. If it’s better to set the default window on empty page and use that script below. It works for me
tell application “Google Chrome”
activate
end tell
tell application “System Events”
tell process “Google Chrome”
tell menu bar 1
tell menu bar item “File”
tell menu “File”
click menu item “Close Window”
end tell
end tell
tell menu “File”
click menu item “New Incognito Window”
end tell
end tell
end tell
end tell