Home > Archives > 2007年12月 > Firefox2のフィードプレビュー機能を無効にする方法

Firefox2のフィードプレビュー機能を無効にする方法

Firefox2のフィードプレビュー機能を無効にする方法

無効にする簡単な方法が見つかったのでメモ。


How-to: Disable Firefox 2 RSS preview

Windows users will find this file located at: ‘C:\Program Files\Mozilla Firefox\components\FeedConverter.js’


OS X users should look here: /Applications/Firefox.app/Contents/MacOS/components/FeedConverter.js’


Simply edit out the if (result.doc) to read if (0).

Ver.2.0.0.11なら以下のような感じでいけます。

--- FeedConverter.js	Sat Dec 22 00:45:07 2007
+++ FeedConverter.js	Sat Dec 22 00:45:07 2007
@@ -193,7 +193,7 @@
 
       // show the feed page if it wasn't sniffed and we have a document,
       // or we have a document, title, and link or id
-      if (result.doc && (!this._sniffed ||
+      if (false && result.doc && (!this._sniffed ||
           (result.doc.title && (result.doc.link || result.doc.id)))) {
         // If there was no automatic handler, or this was a podcast,
         // photostream or some other kind of application, we must always

Comment: 0

Attention
コメントの受け付けは終了しました。

Trackback: 0

Attention
トラックバックの受け付けは終了しました。

Home > Archives > 2007年12月 > Firefox2のフィードプレビュー機能を無効にする方法

Feeds
Counter
  • Counter

    since 2008.01.11

Page Top