Get feed url

By chyni Last update Mar 22, 2007 — Installed 148 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name	Get feed url
// @description    Get feed url from any site
// @namespace	
// @include			*
// ==/UserScript==
function getFeedUrl()
{
links=document.getElementsByTagName("link")
for(i in links){
  link=links[i];
  if((link.type.toLowerCase()=="application/rss+xml")||(link.type.toLowerCase()=="application/atom+xml"))
  {
    return link.href;
  }
}
}