ちょっとしたカスタマイズ
■ロケーションバーの検索エンジンを変更する
「Yahoo!検索」から「Google Search」へ変更。
Firefox1.5まではGoogleのI'm Feeling Luckyによる検索でした。
1. ロケーションバーに「about:config」と入力
2. 「keyword.URL」変数値を「http://www.google.com/search?ie=UTF-8&q=」に変更
これで、ロケーションバーに単語を入力したときの検索が「Google Search」で行われます。
■アクティブなタブを目立たせる
「userChrome.css」に以下の記述を追加。
@-moz-document url("chrome://browser/content/browser.xul") {
tab[selected="true"] {
min-width: 300px !important;
font-size: larger;
color: blue;
}
tab:not([selected="true"]) {
max-width: 175px !important;
}
}