Enable (vertical) side tabs in Google Chrome [Windows, Mac]
Join the DZone community and get the full member experience.
Join For FreeHorizontal tabs: Vertical space is wasted, tab titles become hard to read. |
Vertical tabs: Better use of horizontal space on widescreen displays, titles readable even with many tabs. You can tell that its a beta feature, because everything still looks a bit ugly. |
- Windows: Type “about:flags” into the address bar. Enable “Side Tabs”. Restart Chrome [details].
- Mac
- Open Chrome from Terminal like this:
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome -enable-vertical-tabs
If you want to make this more permanent: Rename the binary mentioned above (e.g. to “Google Chrome Binary”) and put a shell script that invokes it in its place [details]:#!/bin/bash
Second step: Toggle vertical bars via the context menu that opens on a tab.
exec "${0%/*}/Google Chrome Binary" -enable-vertical-tabs "$@"Second step: Toggle vertical bars via the context menu that opens on a tab.
- Open Chrome from Terminal like this:
Published at DZone with permission of Axel Rauschmayer, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments