Firefox3 のアップデートに際して

前準備に削除(Firefox1->2へのきれいな移行の時のおまじない):

プログラムの削除後にフォルダの削除
%ProgramFiles%Mozilla Firefox
プロファイルの削除
%APPDATA%\Mozilla\Firefox\Profiles\xxxxxxxx.default

インストール後の設定

ツールバー

javascript:location.href='http://livedoor.com/login/logout'
LogoutLDR

javascript:location.href='https://member.livedoor.com/login/?.next=http%3A%2F%2Freader.livedoor.com%2Freader%2F&.sv=reader'
LDR

javascript:location.href='https://member.livedoor.com/login/?.next=http://reader.livedoor.com/subscribe/'+location.href
SubscribeLDR

javascript:void(location.href='http://tinyurl.com/create.php?url='+location.href)
TinyURL!

アドオン

Firebug
1.2.0b3
http://www.getfirebug.com/

MozLab
0.1.9.2008061618
http://hyperstruct.net/projects/mozlab

XUL/Migemo
0.9.1
http://piro.sakura.ne.jp/xul/xulmigemo/

XHTML Ruby Support
2.1.2008040101
http://piro.sakura.ne.jp/xul/_rubysupport.html.en

Google Toolbar for Firefox
3.1.20080605W
http://www.google.com/

Flashblock
1.5.6
http://flashblock.mozdev.org/

Stylish
0.5.7
http://userstyles.org/stylish/

ScrapBook
1.3.3.6
http://amb.vis.ne.jp/mozilla/scrapbook/

IE Tab
1.5.20080618
https://addons.mozilla.org/firefox/addon/1419/

Live HTTP Headers
0.14
http://livehttpheaders.mozdev.org/

Selenium IDE
1.0b2
http://www.openqa.org/selenium-ide/

Multiproxy Switch
1.17
http://proxyswitch.googlepages.com

Web Developer
1.1.6
http://chrispederick.com/work/web-developer/

DownThemAll!
1.0.3
http://downthemall.net/

Greasemonkey
0.8.20080609.0
http://www.greasespot.net/

User Agent Switcher
0.6.11
http://chrispederick.com/work/user-agent-switcher/

アドオンを抜き出すruby-script

require 'rexml/document'
require 'nkf'
require 'pp'

p rootdir = "%APPDATA%/Mozilla/Firefox/Profiles/xxxxxxxx.Default2/extensions"
nkf_option = "-s -m0 --cp932"
Dir.glob(rootdir+"/**/install.rdf").each{|f|
  p f
  file = File.open(f)
  xml = NKF::nkf(nkf_option, file.read)
  xmldoc = REXML::Document.new(xml)
  xmldoc.root.each_element("/RDF/Description"){|el|
    if el.elements['em:name'] == nil
      next
    else
      p el.elements['em:name'].text
      p el.elements['em:version'].text
      p el.elements['em:homepageURL'].text
    end
  }
  xmldoc.root.each_element("/RDF:RDF/RDF:Description"){|el|
    if el.attributes.get_attribute("em:name") == nil
      next
    else
      p el.attributes['em:name'].to_s
      p el.attributes['em:version'].to_s
      p el.attributes['em:homepageURL'].to_s
    end
  }
  file.close
}

Firefox3の設定

メニュー -> ツール -> オプション ->
一般 -> 起動 -> ホームページ
about:blank

ダウンロード
ファイルごとに保存先を指定する

タブ
常にタブバーを表示する

設定 -> ネットワーク -> 接続 -> 接続設定
手動でプロキシを設定する

コンテンツ -> フォントと配色 -> 詳細設定
最小フォントサイズ 14

プライバシー -> 履歴
Webページのフォームや検索バーに入力した内容を記憶する チェックしない

プライバシー -> Cookie
サードパーティのCookieも保存する チェックしない

セキュリティ -> パスワード
サイトのパスワードを保存する チェックしない

about:config
network.dns.disableIPv6 = false -> true
network.http.proxy.keep-alive = true -> false