JavaScriptブックマークレットでRSSをFeedlyで登録しやすくする
by iwbjp
JavaScript
(function(){
var link = document.getElementsByTagName("link");
for (var i=0; i<link.length; i++){
var anchor = link[i];
var type = String(anchor.getAttribute('type'));
var href;
if(type === 'application/rss+xml'){
href = anchor.href;
location.href = 'https://feedly.com/index.html#subscription/feed/' + href;
return false;
}
else if(type === 'application/atom+xml'){
href = anchor.href;
location.href = 'https://feedly.com/index.html#subscription/feed/' + href;
return false;
}
}
})();