2006-04-17

Google Toolbar v2 の「お気に入りの登録リーダー」を増やす

先日のエントリー「clmemo@aka: Google Toolbar for Firefox v2 から Google Reader にフィードを登録する」を書きながら思ってた。about:config をいじって云々って面倒だなぁ。user.js をいじって一発登録できないもんかしらん...

そしたら、Going My Way さんが、Google Reader だけじゃなくて「My Yahoo! Japan」と「はてな RSS」への応用例を記事にされた。それも、かなり丁寧な説明で (でも、about:config をいじってるんだけどね)。

Going My Way さんの記事を参考に、user.js 用のコードを書いた。

user_pref("google.toolbar.subscribe.aggregators.googlereader.desc", "Google Reader");
user_pref("google.toolbar.subscribe.aggregators.googlereader.id", "googlereader");
user_pref("google.toolbar.subscribe.aggregators.googlereader.order", "6");
user_pref("google.toolbar.subscribe.aggregators.googlereader.title", "Google Reader");
user_pref("google.toolbar.subscribe.aggregators.googlereader.url", "http://www.google.com/reader/view/feed%2F%feed%");
user_pref("google.toolbar.subscribe.aggregators.myyahoojp.desc", "My Yahoo! Japan");
user_pref("google.toolbar.subscribe.aggregators.myyahoojp.id", "myyahoojp");
user_pref("google.toolbar.subscribe.aggregators.myyahoojp.order", "7");
user_pref("google.toolbar.subscribe.aggregators.myyahoojp.title", "My Yahoo! Japan");
user_pref("google.toolbar.subscribe.aggregators.myyahoojp.url", "http://e.my.yahoo.co.jp/config/jp_promo_content?.module=jp_rss&.url=%feed%");
user_pref("google.toolbar.subscribe.aggregators.hatenarss.desc", "はてな RSS");
user_pref("google.toolbar.subscribe.aggregators.hatenarss.id", "hatenarss");
user_pref("google.toolbar.subscribe.aggregators.hatenarss.order", "8");
user_pref("google.toolbar.subscribe.aggregators.hatenarss.title", "はてな RSS");
user_pref("google.toolbar.subscribe.aggregators.hatenarss.url", "http://r.hatena.ne.jp/append/%feed%");

firefox を一旦終了させて、上のコードを user.js に貼り付ける。firefox を起ち上げると、「Google Reader」「日本版 My Yahoo!」「はてな RSS」が「お気に入りの登録リーダー」に追加される。user.js がどこにあるかは、次のサイトを参考にされたし。

about:config をいじるより、楽だと思うのだけど。どうかしらん。

No comments:

Post a Comment