Firefox33

user.js

// プライバシ-

// 「http://」を表示
user_pref("browser.urlbar.trimURLs", false);

// 位置情報通知機能を無効化
user_pref("geo.enabled", false);

// WebRTC機能を無効化
user_pref("media.peerconnection.enabled", false);

// mailto: からメーラーを起動しない
user_pref("network.protocol-handler.external.mailto", false);

userChrome.css

@charset "utf-8";
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/* 右利き用 */
#browser{
  -moz-box-direction:reverse;
}


/* タブ長を広げて見やすく  */
.tabbrowser-tab[selected]:not([pinned])[fadein]{
  min-width:200px !important;
}

/* URLを見やすく */
#urlbar{
  font-family:Consolas,monospace !important;
}

/* Inactivate IME in URL Bar */
#urlbar *|input{
  ime-mode: inactive !important; font-size: 12pt !important;
}


userContent.css

@charset "UTF-8";
@namespace url(http://www.w3.org/1999/xhtml);