LoginSignup
6
2

More than 5 years have passed since last update.

Firefoxでブックマークの段を増やす(2017/12/19更新)

Last updated at Posted at 2017-11-24

Firefoxのブックマークのツールバーで、
いっぱい登録していると矢印になって選びづらくなると思いますが、
以下の操作を行えば多段にする事ができます。

環境

  • Firefox Developer Edition 58.0b5 64bit

手順

  • URLに about:support と入力
  • プロファイルフォルダーを開く
  • chromeというディレクトリがなければ作成
  • chromeの中にuserChrome.cssを作成

以下のCSSで段が可変になります。
(レスポンシブ)

userChrome.css
#PersonalToolbar {
    max-height: unset !important;
}

#PlacesToolbarItems > box {
    float: left;
}

#PlacesToolbarItems {
    display: inline-table;
}

.bookmark-item {
    visibility: unset !important;
}
6
2
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
6
2