<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Google Chrome Incognito &#8211; Mac OSX Perfect Solution</title>
	<atom:link href="http://www.coolgeex.com/google-chrome-incognito-mac-osx-perfect-solution/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.coolgeex.com/google-chrome-incognito-mac-osx-perfect-solution/</link>
	<description>Gadget and tech guide for the rest of us</description>
	<lastBuildDate>Fri, 06 Jan 2012 21:52:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>By: Zorro</title>
		<link>http://www.coolgeex.com/google-chrome-incognito-mac-osx-perfect-solution/comment-page-1/#comment-23348</link>
		<dc:creator>Zorro</dc:creator>
		<pubDate>Fri, 06 Jan 2012 21:52:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.coolgeex.com/?p=349#comment-23348</guid>
		<description>@DV 

re-check what Cool Geex Said On 12-27-2009 : it works</description>
		<content:encoded><![CDATA[<p>@DV </p>
<p>re-check what Cool Geex Said On 12-27-2009 : it works</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dolce</title>
		<link>http://www.coolgeex.com/google-chrome-incognito-mac-osx-perfect-solution/comment-page-1/#comment-1060</link>
		<dc:creator>Dolce</dc:creator>
		<pubDate>Sun, 05 Dec 2010 16:23:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.coolgeex.com/?p=349#comment-1060</guid>
		<description>I have made a new script which will not open any new instances of Chrome, but will still open New Incognito Windows.

This my first time making a script, but I think this is it:

tell application &quot;Finder&quot; to set tProcesses to name of processes
if (tProcesses does not contain &quot;Google Chrome&quot;) then
	do shell script &quot;open -a Google\\ Chrome --args -incognito&quot;
end if

tell application &quot;System Events&quot;
	if (tProcesses contains &quot;Google Chrome&quot;) then
		tell application &quot;Google Chrome&quot;
			activate
		end tell
		tell process &quot;Google Chrome&quot;
			click menu item &quot;New Incognito Window&quot; of menu &quot;File&quot; of menu bar 1
		end tell
	end if
end tell</description>
		<content:encoded><![CDATA[<p>I have made a new script which will not open any new instances of Chrome, but will still open New Incognito Windows.</p>
<p>This my first time making a script, but I think this is it:</p>
<p>tell application &#8220;Finder&#8221; to set tProcesses to name of processes<br />
if (tProcesses does not contain &#8220;Google Chrome&#8221;) then<br />
	do shell script &#8220;open -a Google\\ Chrome &#8211;args -incognito&#8221;<br />
end if</p>
<p>tell application &#8220;System Events&#8221;<br />
	if (tProcesses contains &#8220;Google Chrome&#8221;) then<br />
		tell application &#8220;Google Chrome&#8221;<br />
			activate<br />
		end tell<br />
		tell process &#8220;Google Chrome&#8221;<br />
			click menu item &#8220;New Incognito Window&#8221; of menu &#8220;File&#8221; of menu bar 1<br />
		end tell<br />
	end if<br />
end tell</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Benoit</title>
		<link>http://www.coolgeex.com/google-chrome-incognito-mac-osx-perfect-solution/comment-page-1/#comment-746</link>
		<dc:creator>Benoit</dc:creator>
		<pubDate>Sat, 14 Aug 2010 07:01:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.coolgeex.com/?p=349#comment-746</guid>
		<description>the chevrons we taken as HTML tags in my last post.

the 2 includes should be 
stdio.h
unistd.h</description>
		<content:encoded><![CDATA[<p>the chevrons we taken as HTML tags in my last post.</p>
<p>the 2 includes should be<br />
stdio.h<br />
unistd.h</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Benoit</title>
		<link>http://www.coolgeex.com/google-chrome-incognito-mac-osx-perfect-solution/comment-page-1/#comment-745</link>
		<dc:creator>Benoit</dc:creator>
		<pubDate>Sat, 14 Aug 2010 06:59:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.coolgeex.com/?p=349#comment-745</guid>
		<description>Many ways to do this.  My preferred way is 
*You might need to change the path to Google Chrome.app

1) mv &quot;/Applications/Google Chrome.app/Contents/MacOS/Google Chrome&quot; &quot;/Applications/Google Chrome.app/Contents/MacOS/GoogleChrome&quot;

2) compile this C code, to &quot;/Applications/Google Chrome.app/Contents/MacOS/Google Chrome&quot;
===============
#include 
#include 

int main () {
execl(&quot;/Applications/Google Chrome.app/Contents/MacOS/GoogleChrome&quot;, &quot;GoogleChrome&quot;, &quot;--incognito&quot;, (char *)0 );
  return 0;
}
===============

3) now google chrome will launch in incognito all the time, without adding extra useless icons in the dock. 

note new window and reclicking on the dock icon will launch plain windows, no work around for that.</description>
		<content:encoded><![CDATA[<p>Many ways to do this.  My preferred way is<br />
*You might need to change the path to Google Chrome.app</p>
<p>1) mv &#8220;/Applications/Google Chrome.app/Contents/MacOS/Google Chrome&#8221; &#8220;/Applications/Google Chrome.app/Contents/MacOS/GoogleChrome&#8221;</p>
<p>2) compile this C code, to &#8220;/Applications/Google Chrome.app/Contents/MacOS/Google Chrome&#8221;<br />
===============<br />
#include<br />
#include </p>
<p>int main () {<br />
execl(&#8220;/Applications/Google Chrome.app/Contents/MacOS/GoogleChrome&#8221;, &#8220;GoogleChrome&#8221;, &#8220;&#8211;incognito&#8221;, (char *)0 );<br />
  return 0;<br />
}<br />
===============</p>
<p>3) now google chrome will launch in incognito all the time, without adding extra useless icons in the dock. </p>
<p>note new window and reclicking on the dock icon will launch plain windows, no work around for that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.coolgeex.com/google-chrome-incognito-mac-osx-perfect-solution/comment-page-1/#comment-648</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Tue, 13 Apr 2010 02:15:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.coolgeex.com/?p=349#comment-648</guid>
		<description>I played around with it and found a way to improve the script!  The problem with the do shell script above is that it will launch a new window and dock icon (which is weird) every time it is run.  The following will detect an open instance of Chrome and prevent that.  Thanks again for the original script, Cool Geex!




tell application &quot;Finder&quot; to set tProcesses to name of processes
if (tProcesses does not contain &quot;Google Chrome&quot;) then
	do shell script &quot;open -a Google\\ Chrome --new --args -incognito&quot;
end if</description>
		<content:encoded><![CDATA[<p>I played around with it and found a way to improve the script!  The problem with the do shell script above is that it will launch a new window and dock icon (which is weird) every time it is run.  The following will detect an open instance of Chrome and prevent that.  Thanks again for the original script, Cool Geex!</p>
<p>tell application &#8220;Finder&#8221; to set tProcesses to name of processes<br />
if (tProcesses does not contain &#8220;Google Chrome&#8221;) then<br />
	do shell script &#8220;open -a Google\\ Chrome &#8211;new &#8211;args -incognito&#8221;<br />
end if</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DV</title>
		<link>http://www.coolgeex.com/google-chrome-incognito-mac-osx-perfect-solution/comment-page-1/#comment-524</link>
		<dc:creator>DV</dc:creator>
		<pubDate>Wed, 06 Jan 2010 21:30:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.coolgeex.com/?p=349#comment-524</guid>
		<description>100 thank yous for the Leopard addition!!</description>
		<content:encoded><![CDATA[<p>100 thank yous for the Leopard addition!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cool Geex</title>
		<link>http://www.coolgeex.com/google-chrome-incognito-mac-osx-perfect-solution/comment-page-1/#comment-514</link>
		<dc:creator>Cool Geex</dc:creator>
		<pubDate>Sat, 02 Jan 2010 03:06:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.coolgeex.com/?p=349#comment-514</guid>
		<description>Did you save google.com as your home page?
This is the way that the script knows what window to close.

You can also remove the following code from the script:
tell menu bar item &quot;Window&quot;
tell menu &quot;Window&quot;
click menu item &quot;Google&quot;
end tell
end tell

tell menu bar item &quot;File&quot;
tell menu &quot;File&quot;
click menu item &quot;Close Window&quot;
end tell
end tell

*But remember it will not close the first window.

Also, I tried all that methods on Snow Leopard, If you are running Leopard it might be different.
I&#039;ll try to find the right way for Leopard and update the post.</description>
		<content:encoded><![CDATA[<p>Did you save google.com as your home page?<br />
This is the way that the script knows what window to close.</p>
<p>You can also remove the following code from the script:<br />
tell menu bar item &#8220;Window&#8221;<br />
tell menu &#8220;Window&#8221;<br />
click menu item &#8220;Google&#8221;<br />
end tell<br />
end tell</p>
<p>tell menu bar item &#8220;File&#8221;<br />
tell menu &#8220;File&#8221;<br />
click menu item &#8220;Close Window&#8221;<br />
end tell<br />
end tell</p>
<p>*But remember it will not close the first window.</p>
<p>Also, I tried all that methods on Snow Leopard, If you are running Leopard it might be different.<br />
I&#8217;ll try to find the right way for Leopard and update the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DV</title>
		<link>http://www.coolgeex.com/google-chrome-incognito-mac-osx-perfect-solution/comment-page-1/#comment-513</link>
		<dc:creator>DV</dc:creator>
		<pubDate>Sat, 02 Jan 2010 00:08:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.coolgeex.com/?p=349#comment-513</guid>
		<description>Max OS X: v 10.5.8

Chrome: 4.0.249.43 (up to date)



I also visited your previous link and tried using that Mac method. The script was entered and compiled, and while pressing Run did open a new Incognito window, the script wouldn&#039;t work, and I got the error:

System Events got an error: Can’t get menu item &quot;Google&quot; of menu &quot;Window&quot; of menu bar item &quot;Window&quot; of menu bar 1 of process &quot;Google Chrome&quot;.</description>
		<content:encoded><![CDATA[<p>Max OS X: v 10.5.8</p>
<p>Chrome: 4.0.249.43 (up to date)</p>
<p>I also visited your previous link and tried using that Mac method. The script was entered and compiled, and while pressing Run did open a new Incognito window, the script wouldn&#8217;t work, and I got the error:</p>
<p>System Events got an error: Can’t get menu item &#8220;Google&#8221; of menu &#8220;Window&#8221; of menu bar item &#8220;Window&#8221; of menu bar 1 of process &#8220;Google Chrome&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cool Geex</title>
		<link>http://www.coolgeex.com/google-chrome-incognito-mac-osx-perfect-solution/comment-page-1/#comment-512</link>
		<dc:creator>Cool Geex</dc:creator>
		<pubDate>Thu, 31 Dec 2009 22:52:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.coolgeex.com/?p=349#comment-512</guid>
		<description>What version of OSX &amp; Google Chrome are you using?
I got lots of Positive feedbacks for that post.</description>
		<content:encoded><![CDATA[<p>What version of OSX &#038; Google Chrome are you using?<br />
I got lots of Positive feedbacks for that post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ct</title>
		<link>http://www.coolgeex.com/google-chrome-incognito-mac-osx-perfect-solution/comment-page-1/#comment-511</link>
		<dc:creator>ct</dc:creator>
		<pubDate>Thu, 31 Dec 2009 21:51:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.coolgeex.com/?p=349#comment-511</guid>
		<description>Nope. Neither the script nor the program work, regardless of rewriting it.</description>
		<content:encoded><![CDATA[<p>Nope. Neither the script nor the program work, regardless of rewriting it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DV</title>
		<link>http://www.coolgeex.com/google-chrome-incognito-mac-osx-perfect-solution/comment-page-1/#comment-510</link>
		<dc:creator>DV</dc:creator>
		<pubDate>Mon, 28 Dec 2009 05:29:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.coolgeex.com/?p=349#comment-510</guid>
		<description>Sorry--I really should have specified:

That&#039;s the error I received after downloading your app. The very same error occurs when I try to manually write the scripts. &#039;args&#039; appearing with one &#039;-&#039; is just the chat, on my screen it appeared with two.</description>
		<content:encoded><![CDATA[<p>Sorry&#8211;I really should have specified:</p>
<p>That&#8217;s the error I received after downloading your app. The very same error occurs when I try to manually write the scripts. &#8216;args&#8217; appearing with one &#8216;-&#8217; is just the chat, on my screen it appeared with two.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cool Geex</title>
		<link>http://www.coolgeex.com/google-chrome-incognito-mac-osx-perfect-solution/comment-page-1/#comment-509</link>
		<dc:creator>Cool Geex</dc:creator>
		<pubDate>Sun, 27 Dec 2009 20:12:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.coolgeex.com/?p=349#comment-509</guid>
		<description>Hi DV,
Do not Copy Paste the code, Just reWrite it.
When you copy HTML and Paste it to terminal it using different character set.
You can also download the Application, this is the easiest way. (Don&#039;t worry - it is Safe)

If you don&#039;t want to download the App, just make sure that you write the code and that there&#039;s 2 minus characters before new and args. 
Terminal: &lt;code&gt;open -a Google\ Chrome --new --args -incognito&lt;/code&gt;
Script Editor: &lt;code&gt;do shell script &quot;open -a Google\\ Chrome --new --args -incognito&quot;&lt;/code&gt;

Good Luck</description>
		<content:encoded><![CDATA[<p>Hi DV,<br />
Do not Copy Paste the code, Just reWrite it.<br />
When you copy HTML and Paste it to terminal it using different character set.<br />
You can also download the Application, this is the easiest way. (Don&#8217;t worry &#8211; it is Safe)</p>
<p>If you don&#8217;t want to download the App, just make sure that you write the code and that there&#8217;s 2 minus characters before new and args.<br />
Terminal: <code>open -a Google\ Chrome --new --args -incognito</code><br />
Script Editor: <code>do shell script "open -a Google\\ Chrome --new --args -incognito"</code></p>
<p>Good Luck</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DV</title>
		<link>http://www.coolgeex.com/google-chrome-incognito-mac-osx-perfect-solution/comment-page-1/#comment-507</link>
		<dc:creator>DV</dc:creator>
		<pubDate>Sat, 26 Dec 2009 06:00:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.coolgeex.com/?p=349#comment-507</guid>
		<description>Help?


open: unrecognized option `--args&#039;
Usage: open [-e] [-t] [-f] [-W] [-n] [-g] [-h] [-b ] [-a ] [filenames]
Help: Open opens files from a shell.
      By default, opens each file using the default application for that file.  
      If the file is in the form of a URL, the file will be opened as a URL.
Options: 
      -a                Opens with the specified application.
      -b                Opens with the specified application bundle identifier.
      -e                Opens with TextEdit.
      -t                Opens with default text editor.
      -f                Reads input from standard input and opens with TextEdit.
      -W, --wait-apps   Blocks until the used applications are closed (even if they were already running).
      -n, --new         Open a new instance of the application even if one is already running.
      -g, --background  Does not bring the application to the foreground.
      -h, --header      Searches header file locations for headers matching the given filenames, and opens them.</description>
		<content:encoded><![CDATA[<p>Help?</p>
<p>open: unrecognized option `&#8211;args&#8217;<br />
Usage: open [-e] [-t] [-f] [-W] [-n] [-g] [-h] [-b ] [-a ] [filenames]<br />
Help: Open opens files from a shell.<br />
      By default, opens each file using the default application for that file.<br />
      If the file is in the form of a URL, the file will be opened as a URL.<br />
Options:<br />
      -a                Opens with the specified application.<br />
      -b                Opens with the specified application bundle identifier.<br />
      -e                Opens with TextEdit.<br />
      -t                Opens with default text editor.<br />
      -f                Reads input from standard input and opens with TextEdit.<br />
      -W, &#8211;wait-apps   Blocks until the used applications are closed (even if they were already running).<br />
      -n, &#8211;new         Open a new instance of the application even if one is already running.<br />
      -g, &#8211;background  Does not bring the application to the foreground.<br />
      -h, &#8211;header      Searches header file locations for headers matching the given filenames, and opens them.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

