Live data from Hacker News

Firefox Sidebar and Vertical tabs: try them out

blog.nightly.mozilla.org

151–160 of 364 posts

Re: Firefox Sidebar and Vertical tabs: try them out

#151
post #55

Earlier quoted context omitted.

FF has said that they are finally adding groups, too, but I haven't heard anything about the timing of that. I'm really looking forward to that as I currently use a plugin for that and would love to drop the third-party plugin for something native. I'm always worried about the risk of a third-party plugin like that with such broad access. I'm a project manager and use it to manage about 200 tabs in about 12 groups. E…

It's called "Tab Containers" and Firefox was the first browser to have the feature

Containers separate context for the websites, e.g. you can log in to the same site with different account at the same time.

Simple Tab Groups separates context for the user, i.e. hides the tabs of inactive groups (while also supporting containers). It's not the same thing.

Re: Firefox Sidebar and Vertical tabs: try them out

#152

This made me think of one thing that I've wanted to see for a long time with browsers: split-pane view. In other words, the ability to see two browser sessions, side-by-side, with a vertical split between them. Two viewports, each with their group of tabs. The same type of view you can get in, for example, Notepad++ with its "Tab>Move to Other View", or Visual Studio's "Tab>New Vertical Document Group". I frequently…

Vivaldi has that . Helpful for comparison, charts etc

Re: Firefox Sidebar and Vertical tabs: try them out

#153

Earlier quoted context omitted.

They're working on a profile switcher: https://connect.mozilla.org/t5/discussions/here-s-what-we-re...

Can’t you change the user profile in the command line with a flag? Surprised it takes this long to implement that in a gui fashion.

There's already a GUI (launch firefox with the --profileManager command line flag), but it's very barebone.

Re: Firefox Sidebar and Vertical tabs: try them out

#154

Found a recent screenshot of it on Reddit. Looks good, I hope it has similar nesting like Tree Style Tab though. In my opinion that is still the best implementation of this idea across all browsers. Firefox' UI has kinda stagnated. It's not like other browsers are far ahead – Chrome doesn't have vertical tabs either – but it does have groups and profiles. They really need to get out of this stale and boring state and…

The unfortunate thing is that Firefox could be the perfect platform for browser UI experimentation if more care were put into making the project easier to fork and reasonable to keep up to date with mainline. A few months ago I played with forking it for my own tinkering but bailed because it seemed likely to turn into a rolling mass of merge conflicts if I were to make anything but minor changes.

Some forks are using a nice patch based system: see how the Zen browser is built for instance (https://github.com/zen-browser/desktop/). I think that's a better model than merging upstream updates into your own branch.

Re: Firefox Sidebar and Vertical tabs: try them out

#155

This made me think of one thing that I've wanted to see for a long time with browsers: split-pane view. In other words, the ability to see two browser sessions, side-by-side, with a vertical split between them. Two viewports, each with their group of tabs. The same type of view you can get in, for example, Notepad++ with its "Tab>Move to Other View", or Visual Studio's "Tab>New Vertical Document Group". I frequently…

I do this all the time by just dragging a tab off so it's a second window (and hitting a key in my wm to make them side-by-side). The only problem is that the address bar turns so tiny it's impossible to read it among all the pointless icons that should've been in the overflow menu, I wish there were a way to make it prioritise showing the url instead of icons for "bookmark this page" and "certified by digicert" etc.

yeah, this with a tiling window manager is my go to.

Re: Firefox Sidebar and Vertical tabs: try them out

#157

Found a recent screenshot of it on Reddit. Looks good, I hope it has similar nesting like Tree Style Tab though. In my opinion that is still the best implementation of this idea across all browsers. Firefox' UI has kinda stagnated. It's not like other browsers are far ahead – Chrome doesn't have vertical tabs either – but it does have groups and profiles. They really need to get out of this stale and boring state and…

Waterfox has vertical tabs

Re: Firefox Sidebar and Vertical tabs: try them out

#159
post #86

I used to be a tree-style-tabs power user but at some point I went back to regular tabs. I find that the amount of horizontal tab space is pretty close to the actual number of things I can usefully have open at once. Seeing the tabs get "squished" is my reminder to close the ones I no longer need. I was using the tab-state as a sort of short-term working memory and I don't think it was doing me any favours, particula…

I actively use tree style tabs, and have dozens to hundreds. With auto tab discard, it's not taxing.

This is because I basically use tabs as bookmarks relevant to a project or subject area. Bookmarks are also tree-structured, but are much more high-ceremony to create.

To my mind, tabs and bookmarks should meld into one. If you don't close a tab actively, it stays deactivated, its tree likely gets collapsed until needed, so it's not an eyesore. When you need it again, it's there, in the proper context.

If you close a tab, it goes to history. But a tree view of history is possible, too (there are extensions for that), so that you can track, from which page did you open this link, what links did you open on this page, etc.

Re: Firefox Sidebar and Vertical tabs: try them out

#160

This made me think of one thing that I've wanted to see for a long time with browsers: split-pane view. In other words, the ability to see two browser sessions, side-by-side, with a vertical split between them. Two viewports, each with their group of tabs. The same type of view you can get in, for example, Notepad++ with its "Tab>Move to Other View", or Visual Studio's "Tab>New Vertical Document Group". I frequently…

Very simple in Firefox (tested in Firefox 60.4.0.esr - any later check toolkit.legacyUserProfileCustomizations.stylesheets etc.):

- use userChrome.css to display ALL tabs side by side:

profile/chrome/userChrome.css :

  tabpanels {
    display: -moz-box !important;
  }

  tabpanels > notificationbox {
    -moz-box-flex: 1;
    border-width: 2px !important;
    border:solid #888;
  }

- with extension like last_selected_tab AFAIR, or your own, to have content-secondary, handled - then hide any browser of other type with styles as well (as by default you have only: tabpanels > notificationbox > browser[type=content-primary] - being the active tab). :)

Post reply on HN