Saturday, 24. March 2007, 19:40:39
Easy way to find page's RSS feed
Some websites don't have an RSS button, but only embed the RSS link so that it shows up in Opera's address bar. I'd like to be able to right-click the Opera address bar RSS button and copy the RSS link so that I can put the feed into Google Reader or something.Wednesday, 28. March 2007, 18:08:47
Friday, 20. April 2007, 18:42:50
Friday, 20. April 2007, 21:00:01
javascript:(function(){
var lnk=document.getElementsByTagName('link');
var s='';
for(var i=0,t=lnk.length;i<t,l=lnk[i];i++)
{
if(l.type=="application/atom+xml" || l.type=="application/rss+xml")
s+='<a href="'+l.href+'" title="'+l.title+'">'+l.title+'</a>
';
}
var hmm=window.open();
hmm.document.write('<title>Feed links for '+location.href+'</title>'+s);
hmm.document.close();
})()
Saturday, 21. April 2007, 05:25:03 (edited)
Originally posted by shoust:
Set this as a bookmark and click it, its function is to open a window with all the feed links ready to copy.
javascript:(function(){ var lnk=document.getElementsByTagName('link'); var s=''; for(var i=0,t=lnk.length;i<t,l=lnk[i];i++) { if(l.type=="application/atom+xml" || l.type=="application/rss+xml") s+='<a href="'+l.href+'" title="'+l.title+'">'+l.title+'</a> '; } var hmm=window.open(); hmm.document.write('<title>Feed links for '+location.href+'</title>'+s); hmm.document.close(); })()
Edit: It doesn't look like it works exactly right as a button. I don't know enough about them to say for sure though. I thought maybe I'd drag the bookmark down to the Start Bar, but it doesn't work from there.
Saturday, 21. April 2007, 11:38:24
javascript:(function(){
var lnk=document.getElementsByTagName('link');
var s='';
for(var i=0,t=lnk.length;i<t,l=lnk[i];i++)
{
if(l.type=='application/atom+xml' || l.type=='application/rss+xml')
s+='<a href=\''+l.href+'\' title=\''+l.title+'\'>'+l.title+'</a>
';
}
var hmm=window.open();
hmm.document.write('<title>Feed links for '+location.href+'</title>'+s);
hmm.document.close();
})()
Sunday, 22. April 2007, 19:20:51
There's one for webmail services.. http://my.opera.com/Rijk/blog/2006/07/11/mailto-to-webmail
Sunday, 22. April 2007, 21:59:24
A UserJS to place feed icons at the top left corner of the page(uses the feed icon from your current skin). Now maybe if I can find the Urls to pass on the feed to the web service then it'll be better.
Monday, 23. April 2007, 14:05:11
Originally posted by shoust:
I like that better than the bookmark/button idea.A UserJS to place feed icons at the top left corner of the page(uses the feed icon from your current skin).
Monday, 23. April 2007, 14:44:03
Originally posted by AyushJ:
Originally posted by shoust:
uses the feed icon from your current skin
background-image:-o-skin(\'RSS\');
Where are these -o-skin values listed ?![]()
In the skin's zip folder > skin.ini
Saturday, 28. July 2007, 00:15:40
Originally posted by shoust:
http://files.myopera.com/shoust/files/getfeedlink.js
A UserJS to place feed icons at the top left corner of the page(uses the feed icon from your current skin). Now maybe if I can find the Urls to pass on the feed to the web service then it'll be better.
I've just discovered that this userjs prevents Google Reader from functioning. Added an exclusion to get it working again:
// @exclude http://*.google.com/reader/*I still love this script, though.
Forums » Opera Community » Opera for desktop » Desktop wish-list
