|
|
|
|
|
by cbr
5470 days ago
|
|
In osx I had to do: cd /Applications/Google\ Chrome.app/Contents/MacOS
mv "Google Chrome" "Google Chrome Binary"
echo '#!/bin/bash
exec "${0%/*}/Google Chrome Binary" -enable-vertical-tabs "$@"' > "Google Chrome"
chmod ugo+x "Google Chrome"
This let me start chrome with the "-enable-vertical-tabs" command line switch. Once it was started I needed to right click a tab and choose "Use Side Tabs". |
|