MacOSXの場合、次の場所に『user.js』ファイルを作る(xxxxxxxx は環境によって異なる)
- ~/Library/Application\ Support/Firefox/Profiles/xxxxxxxx.default/user.js
そして下記を書いて保存
// user.js // Display about:config normally without a warning user_pref("general.warnOnAboutConfig", false); user_pref("browser.tabs.insertRelatedAfterCurrent", false); user_pref("browser.tabs.loadDivertedInBackground", true); user_pref("browser.zoom.siteSpecific", false); user_pref("keyword.URL", "http://www.google.co.jp/search?hl=ja&q="); user_pref("ui.submenuDelay", 0); user_pref('browser.showQuitWarning', true); // 1 indicates that completed and canceled downloads should be removed on quit user_pref("browser.download.manager.retention", 1); // speed up? (when ver 3.6) // user_pref("nglayout.initialpaint.delay", 1) // user_pref("content.notify.interval", 1000); // user_pref("content.switch.threshold", 1000);
- とりあえず今のところこんな感じ
- 20110330 Firefox3から4にupdateしたので若干変更
- 20110427 Googleカレンダー使うならこれ便利かも『FirefoxでGoogleカレンダーで土日の色を青と赤に変える方法(最新版):webサービス:サムリのブログ』