userChrome.css内の追加項目
検索バーの右側に履歴を出すボタンを表示
#searchbar .autocomplete-history-dropmarker {
display: -moz-box !important;
-moz-binding: url("chrome://global/content/bindings/autocomplete.xml#history-dropmarker");
}
移動ボタンを常時表示
#go-button { visibility: visible !important; }
移動ボタンの「移動」の文字を消す
#go-button label {display:none !important;}
不要なメニューを削除
file-menu、edit-menu、view-menu、go-menu、bookmarks-menu、tools-menu、helpMenuのそれぞれ表示したくないメニューを以下のように指定
#edit-menu { display: none !important; }
新しくタブを開くボタンを削除
tabbrowser .tabs-newtab-button {
display: none !important
}
about:config
About:config_entries参照。
Browser.urlbar.default.behavior
URL入力欄のプルダウンボタンクリック時に表示するURLのフィルタの指定。
default: 0 フィルタなし。
使用可能な値は以下の通り。
1 :Restrict: History
2 :Restrict: Bookmarks
4 :Restrict: Tags
8 :Match: Title
16:Match: URL
32:Restrict: Typed
フィルタしたい数値を加算してBrowser.urlbar.default.behaviorの値に入力する。
例)17=History+match URL; 49=History+match URL+Typed
History+Typed=33で。
検索履歴の表示順をHystory順にする
こちらから。
browser.formfill.bucketSize;-1
browser.formfill.maxTimeGroupings;1
browser.formfill.timeGroupingSize;-1
※アルファベット順にするにはbrowser.formfill.maxTimeGroupings;0に直す。
新しいタブを一番右の位置に出す
browser.tabs.insertRelatedAfterCurrent;false