こちらの記事を参考にして、GoogleリーダーにRSSを追加するスクリプトを作ってみました。
var id, obj, document, window, str; obj = new ActiveXObject("Sleipnir.API"); id = obj.GetDocumentID(obj.ActiveIndex); document = obj.GetDocumentObject(id); window = obj.GetWindowObject(id); if (document == null) { obj.MessageBox("documentオブジェクトを作成できません"); } else { str = window.location.href; str = "http://www.google.com/ig/add?source=atgs&feedurl=" + str.replace(/\d+$|\d+#p\d+$|\d+#\d+$|\?of=\d+$/, ''); obj.Navigate(id, str); document = null; } obj = null;
上記の内容を 〜.js といった名前で保存し、RSSを開いた状態でスクリプトを実行すれば動作します。
コメント