Is it possible to open 2 different instances of Chrome with different tabs open?

I want to be able to open Chrome on my Mac, and have 2 instances open, each with different tabs.

Is this possible on OS X?

I know on Windows I could do this with Desktop shortcuts.


You do not need two separate instances of Chrome in order to have two windows. OS X works differently than Windows. To open new window in Chrome (or most of the other apps) press +N. Chrome restores window states after relaunch if You have this option enabled in preferences.


From the Terminal, you can run:

open -na "Google Chrome"

where -n parameters opens a new instance of the application.


On terminal,

/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --user-data-dir=/Users/{UserName}/Documents/Chrome-Personal

Of course, you can change the path you want.

For convenient,

make a file in /Applications, named "chrome.command" with a TextEdit.app,

/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --user-data-dir=/Users/{UserName}/Documents/Chrome-Personal
osascript -e 'tell application "Terminal" to quit' &
exit

and type this on terminal,

sudo chmod 777 /Applications/chrome.command

type the system password if need.

And set the terminal preference like this, enter image description here Now, you got a second chrome when you click the file on the Finder.


Right click on the chrome icon in the tray of your desktop. There will be an option to open new window select this. Open the tabs in the new chrome window you want to have access to and right-click each of them to pin the tabs.