<?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: <![CDATA[View PDFs With Google Docs Viewer Bookmarklet [Update: Greasemonkey Script]]]></title>
	<atom:link href="http://noscope.com/journal/2009/10/view-pdfs-with-google-docs-viewer-bookmarklet/feed" rel="self" type="application/rss+xml" />
	<link>http://noscope.com/journal/2009/10/view-pdfs-with-google-docs-viewer-bookmarklet</link>
	<description>Snacksized Portions of Pointless Stuff</description>
	<lastBuildDate>Thu, 11 Mar 2010 13:03:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: alex p.</title>
		<link>http://noscope.com/journal/2009/10/view-pdfs-with-google-docs-viewer-bookmarklet/comment-page-2#comment-102005</link>
		<dc:creator>alex p.</dc:creator>
		<pubDate>Mon, 01 Mar 2010 19:16:56 +0000</pubDate>
		<guid isPermaLink="false">http://noscope.com/?p=5171#comment-102005</guid>
		<description>Cool, thanks!</description>
		<content:encoded><![CDATA[<p>Cool, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: desk_stage (desk_stage)</title>
		<link>http://noscope.com/journal/2009/10/view-pdfs-with-google-docs-viewer-bookmarklet/comment-page-2#comment-101984</link>
		<dc:creator>desk_stage (desk_stage)</dc:creator>
		<pubDate>Tue, 23 Feb 2010 11:48:11 +0000</pubDate>
		<guid isPermaLink="false">http://noscope.com/?p=5171#comment-101984</guid>
		<description>http://tinyurl.com/ydqa39z 
View PDFs With Google Docs Viewer Bookmarklet [Update: Greasemonkey Script]</description>
		<content:encoded><![CDATA[<p><a href="http://tinyurl.com/ydqa39z" rel="nofollow">http://tinyurl.com/ydqa39z</a><br />
View PDFs With Google Docs Viewer Bookmarklet [Update: Greasemonkey Script]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kamiu (かみう)</title>
		<link>http://noscope.com/journal/2009/10/view-pdfs-with-google-docs-viewer-bookmarklet/comment-page-2#comment-101909</link>
		<dc:creator>kamiu (かみう)</dc:creator>
		<pubDate>Mon, 01 Feb 2010 18:40:03 +0000</pubDate>
		<guid isPermaLink="false">http://noscope.com/?p=5171#comment-101909</guid>
		<description>View PDFs With Google Docs Viewer Bookmarklet [Update: Greasemonkey Script] http://bit.ly/xRVLN</description>
		<content:encoded><![CDATA[<p>View PDFs With Google Docs Viewer Bookmarklet [Update: Greasemonkey Script] <a href="http://bit.ly/xRVLN" rel="nofollow">http://bit.ly/xRVLN</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Van</title>
		<link>http://noscope.com/journal/2009/10/view-pdfs-with-google-docs-viewer-bookmarklet/comment-page-2#comment-101670</link>
		<dc:creator>Van</dc:creator>
		<pubDate>Fri, 01 Jan 2010 14:52:37 +0000</pubDate>
		<guid isPermaLink="false">http://noscope.com/?p=5171#comment-101670</guid>
		<description>I love the wide range of tools that have become available to us through Google. Each month there is a new tool or software that Google is releasing in beta testing. Google Insight has been my favourite and I believe has taken the time out of keyword research. Thanks</description>
		<content:encoded><![CDATA[<p>I love the wide range of tools that have become available to us through Google. Each month there is a new tool or software that Google is releasing in beta testing. Google Insight has been my favourite and I believe has taken the time out of keyword research. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ftvs</title>
		<link>http://noscope.com/journal/2009/10/view-pdfs-with-google-docs-viewer-bookmarklet/comment-page-2#comment-101545</link>
		<dc:creator>ftvs</dc:creator>
		<pubDate>Tue, 22 Dec 2009 08:35:36 +0000</pubDate>
		<guid isPermaLink="false">http://noscope.com/?p=5171#comment-101545</guid>
		<description>Adding encodeURI to the link.href will help with messed up file names like tps%20report.pdf.

I posted the Bookmarklet but there were problems, so adapt from the Greasemonkey script.

Greasemonkey:

&lt;pre&gt;

var link, l = 0; 
 
while (link = document.links[l++]) {
	if (link.href.toLowerCase().indexOf(&#039;.pdf&#039;) != -1 
            &#124;&#124; link.href.toLowerCase().indexOf(&#039;.ppt&#039;) != -1 
            &#124;&#124; link.href.toLowerCase().indexOf(&#039;.tiff&#039;) != -1 
            &#124;&#124; link.href.toLowerCase().indexOf(&#039;.tif&#039;) != -1 
            &amp;&amp; link.href.indexOf(&#039;javascript&#039;) == -1 
            &amp;&amp; link.href.indexOf(&#039;file:&#039;) == -1) 
    {
		var newString = &#039;http://docs.google.com/viewer?url=&#039; + encodeURI(link.href);
		link.href = newString;
	}
}

&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Adding encodeURI to the link.href will help with messed up file names like tps%20report.pdf.</p>
<p>I posted the Bookmarklet but there were problems, so adapt from the Greasemonkey script.</p>
<p>Greasemonkey:</p>
<pre>

var link, l = 0; 

while (link = document.links[l++]) {
	if (link.href.toLowerCase().indexOf('.pdf') != -1
            || link.href.toLowerCase().indexOf('.ppt') != -1
            || link.href.toLowerCase().indexOf('.tiff') != -1
            || link.href.toLowerCase().indexOf('.tif') != -1
            &amp;&amp; link.href.indexOf('javascript') == -1
            &amp;&amp; link.href.indexOf('file:') == -1)
    {
		var newString = 'http://docs.google.com/viewer?url=' + encodeURI(link.href);
		link.href = newString;
	}
}
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: blub_blah (Peter)</title>
		<link>http://noscope.com/journal/2009/10/view-pdfs-with-google-docs-viewer-bookmarklet/comment-page-1#comment-101198</link>
		<dc:creator>blub_blah (Peter)</dc:creator>
		<pubDate>Wed, 25 Nov 2009 09:13:47 +0000</pubDate>
		<guid isPermaLink="false">http://noscope.com/?p=5171#comment-101198</guid>
		<description>Very useful. #Bookmarklet to open pdf, ppt and tiff files with google docs online! no pdf reader needed .. no download! http://bit.ly/xRVLN</description>
		<content:encoded><![CDATA[<p>Very useful. #Bookmarklet to open pdf, ppt and tiff files with google docs online! no pdf reader needed .. no download! <a href="http://bit.ly/xRVLN" rel="nofollow">http://bit.ly/xRVLN</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bookmarks &#124; Call me Yaisog.</title>
		<link>http://noscope.com/journal/2009/10/view-pdfs-with-google-docs-viewer-bookmarklet/comment-page-1#comment-101102</link>
		<dc:creator>Bookmarks &#124; Call me Yaisog.</dc:creator>
		<pubDate>Mon, 16 Nov 2009 22:03:26 +0000</pubDate>
		<guid isPermaLink="false">http://noscope.com/?p=5171#comment-101102</guid>
		<description>[...] View PDFs With Google Docs Viewer Bookmarklet (Noscope)&quot;[...] turn any hyperlink that points to a PDF into a comfy Google Viewer readable PDF.&quot; [...]</description>
		<content:encoded><![CDATA[<p>[...] View PDFs With Google Docs Viewer Bookmarklet (Noscope)&quot;[...] turn any hyperlink that points to a PDF into a comfy Google Viewer readable PDF.&quot; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Serola</title>
		<link>http://noscope.com/journal/2009/10/view-pdfs-with-google-docs-viewer-bookmarklet/comment-page-1#comment-101091</link>
		<dc:creator>Serola</dc:creator>
		<pubDate>Mon, 16 Nov 2009 09:34:41 +0000</pubDate>
		<guid isPermaLink="false">http://noscope.com/?p=5171#comment-101091</guid>
		<description>Thanks Joen and Joel :) That works also for even more pdf conversion services like pdf to html at pdfdownload.org that is also quite nice alternative for Opera Mini users.

javascript:var%20link,l=0;while(link=document.links[l++]){if(link.href.toLowerCase().indexOf(&#039;.pdf&#039;)!=-1&amp;&amp;link.href.indexOf(&#039;javascript&#039;)==-1&amp;&amp;link.href.indexOf(&#039;file:&#039;)==-1){var%20newString=&#039;http://www.pdfdownload.org/pdf2html/pdf2html.php?images=yes&amp;url=&#039;+link.href;link.href=newString;}};void(null);</description>
		<content:encoded><![CDATA[<p>Thanks Joen and Joel :) That works also for even more pdf conversion services like pdf to html at pdfdownload.org that is also quite nice alternative for Opera Mini users.</p>
<p>javascript:var%20link,l=0;while(link=document.links[l++]){if(link.href.toLowerCase().indexOf(&#8216;.pdf&#8217;)!=-1&amp;&amp;link.href.indexOf(&#8216;javascript&#8217;)==-1&amp;&amp;link.href.indexOf(&#8216;file:&#8217;)==-1){var%20newString=&#8217;http://www.pdfdownload.org/pdf2html/pdf2html.php?images=yes&amp;url=&#8217;+link.href;link.href=newString;}};void(null);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dog_race (dog_race)</title>
		<link>http://noscope.com/journal/2009/10/view-pdfs-with-google-docs-viewer-bookmarklet/comment-page-1#comment-101002</link>
		<dc:creator>dog_race (dog_race)</dc:creator>
		<pubDate>Tue, 10 Nov 2009 16:05:13 +0000</pubDate>
		<guid isPermaLink="false">http://noscope.com/?p=5171#comment-101002</guid>
		<description>http://tinyurl.com/ydqa39z 
View PDFs With Google Docs Viewer Bookmarklet [Update: Greasemonkey Script] (Noscope)</description>
		<content:encoded><![CDATA[<p><a href="http://tinyurl.com/ydqa39z" rel="nofollow">http://tinyurl.com/ydqa39z</a><br />
View PDFs With Google Docs Viewer Bookmarklet [Update: Greasemonkey Script] (Noscope)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Computerk(r)ampf.de &#187; Blog Archive &#187; PDFs direkt im Browser anzeigen</title>
		<link>http://noscope.com/journal/2009/10/view-pdfs-with-google-docs-viewer-bookmarklet/comment-page-1#comment-100783</link>
		<dc:creator>Computerk(r)ampf.de &#187; Blog Archive &#187; PDFs direkt im Browser anzeigen</dc:creator>
		<pubDate>Wed, 28 Oct 2009 11:35:25 +0000</pubDate>
		<guid isPermaLink="false">http://noscope.com/?p=5171#comment-100783</guid>
		<description>[...] [Update 2009-10-28]: Noch etwas bequemer geht es mit diesem Bookmarklet. [...]</description>
		<content:encoded><![CDATA[<p>[...] [Update 2009-10-28]: Noch etwas bequemer geht es mit diesem Bookmarklet. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
