$ cat ~/bin/chrome-new #!/bin/sh TMPDIR=`mktemp -d /dev/shm/chrome-XXXXX` google-chrome --user-data-dir=$TMPDIR --no-first-run --no-make-default-browser "$@" rm -rf $TMPDIR
1: https://addons.mozilla.org/firefox/addon/multi-account-conta...
My only gripe is that the containers won't be in sync accross systems, which is already time-consuming to setup..
For those like me who need a bit more detail:
1) make a text file called chrome-new
2) put the following contents in the file in a POSIX-like OS
#!/bin/sh TMPDIR=`mktemp -d /dev/shm/chrome-XXXXX` chromium-browser --user-data-dir=$TMPDIR --no-first-run --no-make-default-browser "$@" rm -rf $TMPDIR
chmod u+x chrome-new