<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Best Of Both Worlds - Safari&#8217;s Style With Firefox&#8217;s Power</title>
	<link>http://www.keynote2keynote.com/2007/04/02/best-of-both-worlds-safaris-style-with-firefoxs-power/</link>
	<description>365 Days Of My Experience With Apple As A Switcher</description>
	<pubDate>Mon, 01 Dec 2008 17:56:50 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1</generator>

	<item>
		<title>By: Leon Kiriliuk</title>
		<link>http://www.keynote2keynote.com/2007/04/02/best-of-both-worlds-safaris-style-with-firefoxs-power/#comment-652</link>
		<author>Leon Kiriliuk</author>
		<pubDate>Wed, 04 Apr 2007 03:58:56 +0000</pubDate>
		<guid>http://www.keynote2keynote.com/2007/04/02/best-of-both-worlds-safaris-style-with-firefoxs-power/#comment-652</guid>
					<description>I'd love to see a plugin that allows you to press Ctrl-Command-D and pop up a dictionary definition of whatever you have highlighted!</description>
		<content:encoded><![CDATA[<p>I&#8217;d love to see a plugin that allows you to press Ctrl-Command-D and pop up a dictionary definition of whatever you have highlighted!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Nick Young</title>
		<link>http://www.keynote2keynote.com/2007/04/02/best-of-both-worlds-safaris-style-with-firefoxs-power/#comment-654</link>
		<author>Nick Young</author>
		<pubDate>Wed, 04 Apr 2007 06:05:26 +0000</pubDate>
		<guid>http://www.keynote2keynote.com/2007/04/02/best-of-both-worlds-safaris-style-with-firefoxs-power/#comment-654</guid>
					<description>Leon,

While this workaround is definitely not as efficient as the Ctrl Command D command in Safari, here's what I do.

I have the Dictionary.com &lt;a href="http://dictionary.reference.com/tools/firefox.html" rel="nofollow"&gt;search bar plugin&lt;/a&gt; installed in Firefox.  If I want to search for a word I double click it and hit Apple C to copy the word to the clipboard.  I then hit Apple T to open a new Firefox tab.  Now I hit the tab key to put the keyboard focus in the search bar.  Now hit Apple V and then enter and the word will be looked up at Dictionary.com.

If you're used to the simplicity of the Safari Dictionary method this will seem complex and ugly.  But it works...</description>
		<content:encoded><![CDATA[<p>Leon,</p>
<p>While this workaround is definitely not as efficient as the Ctrl Command D command in Safari, here&#8217;s what I do.</p>
<p>I have the Dictionary.com <a href="http://dictionary.reference.com/tools/firefox.html" rel="nofollow">search bar plugin</a> installed in Firefox.  If I want to search for a word I double click it and hit Apple C to copy the word to the clipboard.  I then hit Apple T to open a new Firefox tab.  Now I hit the tab key to put the keyboard focus in the search bar.  Now hit Apple V and then enter and the word will be looked up at Dictionary.com.</p>
<p>If you&#8217;re used to the simplicity of the Safari Dictionary method this will seem complex and ugly.  But it works&#8230;</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Nick Young</title>
		<link>http://www.keynote2keynote.com/2007/04/02/best-of-both-worlds-safaris-style-with-firefoxs-power/#comment-655</link>
		<author>Nick Young</author>
		<pubDate>Wed, 04 Apr 2007 06:33:06 +0000</pubDate>
		<guid>http://www.keynote2keynote.com/2007/04/02/best-of-both-worlds-safaris-style-with-firefoxs-power/#comment-655</guid>
					<description>I did a bit of searching around and didn't find a Firefox plugin to replicate Safari Dictionary's functionality.  But I did find this neat trick...

&lt;blockquote&gt;This is a nice hint, but it still requires that you type a URI into your browser. An earlier followup pointed out that Cntl-Cmd-d does the job automatically, but that only works in Cocoa apps (and frankly I've found it to be a bit spotty -- sometimes it works, sometimes not). If, however, you are partial to Firefox or any other non-Cocoa browser (though this will work in Cocoa browsers as well, of course), you can get almost the same functionality with a little javascript. Specifically, create a bookmark called "Dict" and for the location enter:


javascript:x=escape(getSelection());if(!x){void(x=prompt('What should I look up?',''))};window.location='dict:///' x

Stick that bookmark on your Firefox toolbar. Now you can call up (a running copy of) Dictionary.app for a definition of a word you come across while browsing just by highlighting it and clicking on your new bookmark. (Just clicking on the bookmark without highlighting anything will bring up a dialog box in which you can enter a word manually.)

Note the same trick can be used to call up Google for definitions. In this case, create a bookmark called "GoogleDict" (or whatever) and use the following code for the location:


javascript:x=escape(getSelection());if(!x){void(x=prompt('What should I look up?',''))};window.location='http://www.google.com/search?query=define:' x

More generally, you can alter this code to do a search on any site with a searching mechanism -- Wikipedia, Amazon (nice for looking up highlighted book titles or authors), whatever. Just go to the site in question, enter a search string, and use the resulting URI as the basis for revising the javascript to define the location of a new bookmark for searching that site. Just replace the specific search string you used with "x" in the javascript, as that is the variable that is carrying the string that you've highlighted.

BTW, I did not invent the basic code here. I've been using it for so long I don't remember where I found it, but it is quite likely that I saw it in a MacOSXhints hint! &lt;/blockquote&gt;

Source: &lt;a href="http://www.macosxhints.com/article.php?story=20060907051658239" rel="nofollow"&gt;MacOSHints.com&lt;/a&gt;

If I run across a plugin I'll be sure to let you know :)</description>
		<content:encoded><![CDATA[<p>I did a bit of searching around and didn&#8217;t find a Firefox plugin to replicate Safari Dictionary&#8217;s functionality.  But I did find this neat trick&#8230;</p>
<blockquote><p>This is a nice hint, but it still requires that you type a URI into your browser. An earlier followup pointed out that Cntl-Cmd-d does the job automatically, but that only works in Cocoa apps (and frankly I&#8217;ve found it to be a bit spotty &#8212; sometimes it works, sometimes not). If, however, you are partial to Firefox or any other non-Cocoa browser (though this will work in Cocoa browsers as well, of course), you can get almost the same functionality with a little javascript. Specifically, create a bookmark called &#8220;Dict&#8221; and for the location enter:</p>
<p>javascript:x=escape(getSelection());if(!x){void(x=prompt(&#8217;What should I look up?&#8217;,&#8221;))};window.location=&#8217;dict:///&#8217; x</p>
<p>Stick that bookmark on your Firefox toolbar. Now you can call up (a running copy of) Dictionary.app for a definition of a word you come across while browsing just by highlighting it and clicking on your new bookmark. (Just clicking on the bookmark without highlighting anything will bring up a dialog box in which you can enter a word manually.)</p>
<p>Note the same trick can be used to call up Google for definitions. In this case, create a bookmark called &#8220;GoogleDict&#8221; (or whatever) and use the following code for the location:</p>
<p>javascript:x=escape(getSelection());if(!x){void(x=prompt(&#8217;What should I look up?&#8217;,&#8221;))};window.location=&#8217;http://www.google.com/search?query=define:&#8217; x</p>
<p>More generally, you can alter this code to do a search on any site with a searching mechanism &#8212; Wikipedia, Amazon (nice for looking up highlighted book titles or authors), whatever. Just go to the site in question, enter a search string, and use the resulting URI as the basis for revising the javascript to define the location of a new bookmark for searching that site. Just replace the specific search string you used with &#8220;x&#8221; in the javascript, as that is the variable that is carrying the string that you&#8217;ve highlighted.</p>
<p>BTW, I did not invent the basic code here. I&#8217;ve been using it for so long I don&#8217;t remember where I found it, but it is quite likely that I saw it in a MacOSXhints hint! </p></blockquote>
<p>Source: <a href="http://www.macosxhints.com/article.php?story=20060907051658239" rel="nofollow">MacOSHints.com</a></p>
<p>If I run across a plugin I&#8217;ll be sure to let you know :)</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Make Firefox a little more Safari-like &#187; BabyGotMac</title>
		<link>http://www.keynote2keynote.com/2007/04/02/best-of-both-worlds-safaris-style-with-firefoxs-power/#comment-656</link>
		<author>Make Firefox a little more Safari-like &#187; BabyGotMac</author>
		<pubDate>Wed, 04 Apr 2007 11:09:42 +0000</pubDate>
		<guid>http://www.keynote2keynote.com/2007/04/02/best-of-both-worlds-safaris-style-with-firefoxs-power/#comment-656</guid>
					<description>[...] friends over at Keynote2Keynote have posted a great article about using a couple of nice extensions to make Firefox look and act like Safari without [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] friends over at Keynote2Keynote have posted a great article about using a couple of nice extensions to make Firefox look and act like Safari without [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Galley</title>
		<link>http://www.keynote2keynote.com/2007/04/02/best-of-both-worlds-safaris-style-with-firefoxs-power/#comment-658</link>
		<author>Galley</author>
		<pubDate>Wed, 04 Apr 2007 13:29:45 +0000</pubDate>
		<guid>http://www.keynote2keynote.com/2007/04/02/best-of-both-worlds-safaris-style-with-firefoxs-power/#comment-658</guid>
					<description>Back in my PC days I used Opera.  The Saft plug-in adds nearly all of Opera's features to Safari.

http://haoli.dnsalias.com/Saft/</description>
		<content:encoded><![CDATA[<p>Back in my PC days I used Opera.  The Saft plug-in adds nearly all of Opera&#8217;s features to Safari.</p>
<p><a href="http://haoli.dnsalias.com/Saft/" rel="nofollow">http://haoli.dnsalias.com/Saft/</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jack</title>
		<link>http://www.keynote2keynote.com/2007/04/02/best-of-both-worlds-safaris-style-with-firefoxs-power/#comment-659</link>
		<author>Jack</author>
		<pubDate>Wed, 04 Apr 2007 16:21:09 +0000</pubDate>
		<guid>http://www.keynote2keynote.com/2007/04/02/best-of-both-worlds-safaris-style-with-firefoxs-power/#comment-659</guid>
					<description>You might want to give Flock a try.  It has all the power of Firefox and its extensions plus some great added features built in for social media such as blog editing, Flickr integration, and an interesting RSS reader...  Honestly,I use it as a back up.  Safari is still the main browser for me with some extras tossed in (Safari Stand, forgetmenot, and of course inquisitor).</description>
		<content:encoded><![CDATA[<p>You might want to give Flock a try.  It has all the power of Firefox and its extensions plus some great added features built in for social media such as blog editing, Flickr integration, and an interesting RSS reader&#8230;  Honestly,I use it as a back up.  Safari is still the main browser for me with some extras tossed in (Safari Stand, forgetmenot, and of course inquisitor).</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jeff Vance</title>
		<link>http://www.keynote2keynote.com/2007/04/02/best-of-both-worlds-safaris-style-with-firefoxs-power/#comment-660</link>
		<author>Jeff Vance</author>
		<pubDate>Wed, 04 Apr 2007 19:27:08 +0000</pubDate>
		<guid>http://www.keynote2keynote.com/2007/04/02/best-of-both-worlds-safaris-style-with-firefoxs-power/#comment-660</guid>
					<description>i just use firefox.. all of the extensions rock.
safari is a backup now...</description>
		<content:encoded><![CDATA[<p>i just use firefox.. all of the extensions rock.<br />
safari is a backup now&#8230;</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Nick Young</title>
		<link>http://www.keynote2keynote.com/2007/04/02/best-of-both-worlds-safaris-style-with-firefoxs-power/#comment-675</link>
		<author>Nick Young</author>
		<pubDate>Fri, 06 Apr 2007 06:40:11 +0000</pubDate>
		<guid>http://www.keynote2keynote.com/2007/04/02/best-of-both-worlds-safaris-style-with-firefoxs-power/#comment-675</guid>
					<description>I've heard some neat things about Flock.  When I get some time I'd like to install it and give it a whirl.  If it's every bit as powerful as Firefox, but has nice integration with social media, I think I'd like it.  Thanks for the suggestion Jack.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve heard some neat things about Flock.  When I get some time I&#8217;d like to install it and give it a whirl.  If it&#8217;s every bit as powerful as Firefox, but has nice integration with social media, I think I&#8217;d like it.  Thanks for the suggestion Jack.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: D.J.</title>
		<link>http://www.keynote2keynote.com/2007/04/02/best-of-both-worlds-safaris-style-with-firefoxs-power/#comment-1034</link>
		<author>D.J.</author>
		<pubDate>Sat, 21 Jul 2007 06:53:36 +0000</pubDate>
		<guid>http://www.keynote2keynote.com/2007/04/02/best-of-both-worlds-safaris-style-with-firefoxs-power/#comment-1034</guid>
					<description>I saw a safari theme in Firefox themes called iSafari.</description>
		<content:encoded><![CDATA[<p>I saw a safari theme in Firefox themes called iSafari.</p>
]]></content:encoded>
				</item>
</channel>
</rss>
