Firefox 119設定:user.jsとuserChrome.css

  • user.js
/*
  date: 2023/10/29
 */

// 機能停止・追加
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);  // user(Chrome|Content).cssを有効化
user_pref("browser.tabs.closeWindowWithLastTab", false);  // 最後のタブを閉じても、ブラウザを終了しない

// セキュリティ
user_pref("browser.urlbar.trimURLs", false);  // (http|https)を表示する
user_pref("network.IDN_show_punycode", true);  // 「homograph attack(ホモグラフ攻撃)」を進化させた手法対策する

// 操作
user_pref("extensions.pocket.enabled", false);  // Pocketを無効にする
  • userChrome.css
/*
  date: 2023/10/29
 */

/* Urlbar 判読性の向上  */
#urlbar {
  font-family: HackGen,Consolas !important;
}

/* selected tabの長さ */
.tabbrowser-tab[selected]:not([pinned])[fadein] {
  min-width: 250px !important;
}

/* Tabの区別 */ 
.tabbrowser-tab[selected] .tab-label{
  color: red !important;
}

/* alltabs-buttonの非表示 */
#alltabs-button {
  display: none !important;
}