9
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

MacでFireFoxのタブを左側に配置し、上部のタブの領域を削除(非表示)する方法

Last updated at Posted at 2019-08-20

PCを変えるたび、イライラしながら設定しているので書いておきます。

アドオン【ツリー型タブ】をインストールします。

ツリー型タブ (Tree Style Tab)

これをインストールするだけでタブがいい感じになります。

デフォルトだと右側にツリー型タブがでてきますが、お好みで右側にツリー型タブ移動させましょう。

スクリーンショット 2019-08-20 15.36.32.png

このままだと画面上部にタブが表示されたままです。
非常に鬱陶しいので非表示にしていきます。

上部のタブを非表示に

ブラウザ右上のハンバーガーメニューから、
【ヘルプ】→【トラブルシューティング情報】をクリック。

スクリーンショット 2019-08-20 15.41.03.png スクリーンショット 2019-08-20 15.41.09.png

そして表示された画面上に、

スクリーンショット 2019-08-20 15.44.49.png

というのがあるので、【Finderに表示】をクリック

すると2つくらいフォルダがありますが、
なんちゃら-releaseっていうのほうのフォルダの中に入ります。

フォルダの中に入ったら、【chrome】というフォルダを新たに作ります。
(すでにある場合は特になにもしなくてよいです)

そのフォルダの中に、
userChrome.css
というファイルを作成し、

/* タブバーを非表示にする */
#tabbrowser-tabs {
    visibility: collapse !important;
}

/* サイドバーのヘッダーを消す */
#sidebar-header {
    display: none;
}

/* サイドバー幅の制限をなくす */
#sidebar-box {
    overflow-x: hidden !important;
}
#sidebar {
    min-width: 0px !important;
    max-width: none !important;
    overflow-x: hidden !important;
}

あるいは、

#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items {
  opacity: 0;
  pointer-events: none;
}
#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
    visibility: collapse !important;
}


/* サイドバーのヘッダーを消す */
#sidebar-header {
    display: none;
}

※こっちのほうがいいかも。

上記の内容を貼り付けます。
※フォルダの中にファイルを作成する仕方がわからない場合は(僕ですが)適当な場所にテキストエディタとかで保存しておいて持っていくとか、ターミナルソフトとかで直接そのディレクトリまで移動して作成してもよいと思います。

参考:https://turtlechan.hatenablog.com/entry/2019/11/09/193440
参考:https://github.com/piroor/treestyletab/wiki/Code-snippets-for-custom-style-rules#for-userchromecss

ここまでやったら、firefoxを再起動することで、いい感じになると思います。
幸せいっぱいですね。

9
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?