I'd like to create a bookmarklet that prepends http://www.google.com/reader/lite/feed/ to any RSS url.

Bonus points if it will instead pull the RSS feed of the page you are looking at. I want to do this because sometimes it is easier to read web content in the RSS view, plus, Google Reader Lite does auto pagination aka infinite scroll, which is amazing.

Google Reader Lite is basically an account-free Google Reader engine provided by Google. Further reading:

http://googlesystem.blogspot.com/2009/06/google-reader-lite.html#c2153339799334700152

I was able to sorta get this working by modifying the instapaper 'text view' bookmarklet from here: http://www.instapaper.com/extras

However it doesn't quite work right (and you need to already be looking at the RSS URL)

link|improve this question

36% accept rate
Is Google Reader Lite no longer working? I can't seem to get it to load: google.com/reader/lite – Josh Newman Nov 18 '10 at 22:09
feedback

1 Answer

up vote 1 down vote accepted

Bookmarklet that will prepend Reader URL: javascript:location.href="http://www.google.com/reader/lite/feed/"+location.href

And improved one: javascript:var%20dl=document.getElementsByTagName('link');for(var%20i=0;i<dl.length;i++){if(dl[i].type=='application/rss+xml'||dl[i].type=='application/atom+xml')location.href="http://www.google.com/reader/lite/feed/"+dl[i].href;}.

Also this javascript:(function(){document.body.appendChild(document.createElement('script')).src='http://savanttools.com/feedhelp-bookmarklet.js';})(); can help you too, but it depends on some 3rd-party script.

link|improve this answer
Awesome - thanks for the quick response! Strange how the script code you posted runs 'under' the RELATED side bar text on my 13" MacBook – Josh Newman Jan 29 '10 at 17:58
Added the improved version. – whitequark Jan 29 '10 at 17:59
Perfect - the "improved" one looks to do the trick - thanks again so much for the quick and helpful response! – Josh Newman Jan 29 '10 at 18:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.