Firefox Quantum以降のノウハウ

多段タブ

  1. [ヘルプ]-[トラブルシューティング情報]-[プロファイルフォルダー]からフォルダを開く
  2. Chromeフォルダを作成し、そこで下記内容のuserChrome.cssファイルを作成
    :root { --multirow-n-rows: 3}
    #tabbrowser-tabs {
       min-height: unset !important;
       padding-inline-start: 0px !important;
    }
    #tabbrowser-tabs > .tabbrowser-arrowscrollbox > .arrowscrollbox-scrollbox {
       display: flex;
       flex-wrap: wrap;
       overflow-y: auto;
       max-height: calc(var(--tab-min-height) * var(--multirow-n-rows));
       scrollbar-color: var(--toolbar-bgcolor) var(--lwt-accent-color);
       scrollbar-width: thin;
    }
    #tabbrowser-tabs > .tabbrowser-arrowscrollbox {
       overflow: -moz-hidden-unscrollable;
       display: block;
    }
    .tabbrowser-tab { height: var(--tab-min-height); }
    #tabbrowser-tabs .tabbrowser-tab[pinned] {
       position: static !important;
       margin-inline-start: 0px !important;
    }
    .tabbrowser-tab > stack { width: 100%; height: 100%; }
    #tabbrowser-tabs .scrollbutton-up,
    #tabbrowser-tabs .scrollbutton-down,
    #alltabs-button,
    :root:not([customizing]) #TabsToolbar #new-tab-button,
    #tabbrowser-tabs spacer,
    .tabbrowser-tab::after { display: none !important; }
    .tabbrowser-tab[fadein]:not([pinned]) {
       min-width: 100px !important;
       flex-grow: 1;
    }
    
    .tabbrowser-tab:not([selected="true"]) .tab-close-button { display: none !important; }
    ※最後の行は今開いているタブだけ閉じるボタンを表示するオプションなので不要なら書かなくても大丈夫

タブの幅を変更

  1. about:configを開き、browser.tabs.tabMinWidthに100とか入れる

検索窓からの検索結果を新しいタブで開く

  1. about:configを開き、browser.search.openintab をtrueにする

最後のタブを閉じてもウィンドウは閉じない

  1. about:configを開き、browser.tabs.closeWindowWithLastTab をfalseにする

ロケーションバーから新しいタブを開く

https://addons.mozilla.org/ja/firefox/addon/new-tab-from-location-bar/


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS