• @[email protected]
    link
    fedilink
    English
    91 year ago

    Tab groups is the biggest thing I’m missing after I made the switch the other week. I’m used to having loads of tabs open, so not being able to easily minimize the ones I’m currently using is annoying to say the least.

    One plus is containers. Only opening Meta sites in their own container, same with Google/Youtube is pretty neat.

      • @[email protected]
        link
        fedilink
        English
        11 year ago

        Oh I hate bookmarks for that purpose, I already have too many as is. Found a way to make the tabs even smaller though, so not having a scroll bar for them will be very nice!

    • @elscallr
      link
      English
      11 year ago

      Tab groups and container tabs are the two things I want. Tab groups I’m missing a lot. The extension is not available on mobile.

      • @[email protected]
        link
        fedilink
        English
        01 year ago

        Remembered one more thing; in Firefox I can only have 31 tabs open before the scroll bar appears. In Chrome it’s closer to 90-100! That’s kinda huge imo.

        • @pyrojoe
          link
          English
          3
          edit-2
          1 year ago

          If you go to the about:config page you can edit browser.tabs.tabMinWidth down to 50 (default is 76) which lets you fit a bit more
          If you want more than that it’s possible by editing the userchrome:
          https://old.reddit.com/r/firefox/comments/zda0ov/can_i_get_below_50_tab_width/
          Modifying userchrome is admittedly difficult if you’re not a developer… but not out of reach if you’re able to follow a guide.

          • @[email protected]
            link
            fedilink
            English
            21 year ago

            I did set the tabMinWidth first, but the result was… lackluster… to say the least (I like having ~50-100 tabs per window…). However, I JUST found out about userChrome.css before you wrote, and also found code that worked for it!

            For anyone else interested:

            Guide on creating the userChrome.css file: https://www.userchrome.org/how-create-userchrome-css.html

            Code that should be added to the file: .tabbrowser-tab { min-width: 1em !important; clip-width: 1em !important; }