Running two independent instances of Chrome
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Dream Voyager Looping
--
Chapters
00:00 Running Two Independent Instances Of Chrome
00:35 Accepted Answer Score 18
00:59 Answer 2 Score 12
01:17 Answer 3 Score 8
01:48 Answer 4 Score 3
02:17 Answer 5 Score 3
02:31 Thank you
--
Full question
https://superuser.com/questions/1008895/...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#windows #googlechrome
#avk47
ACCEPTED ANSWER
Score 18
Settings->Add Person, choose icon, give it a name, make sure 'Create desktop shortcut for this user' is checked. Once you open this shortcut, it'll show up on your taskbar as a separate icon.
Read this for more details: http://www.pcworld.com/article/2089364/how-to-create-and-manage-multiple-user-profiles-in-chrome.html
ANSWER 2
Score 12
I've done that before with a portable version of Chrome.
You could even use Google Chrome Canary (if you're ok with beta versions) as the 2nd one so that it has a different icon, etc.
ANSWER 3
Score 8
Google Chrome builtin Profiles are a horrible way to have things separated because they have many bugs not fixed in a long time as (https://bugs.chromium.org/p/chromium/issues/detail?id=130656).
The best way to separate things is to create two or more different shortcuts to the Google Chrome Application with different data directories:
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --user-data-dir="c:\user1"
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --user-data-dir="c:\user2"
...
- https://medium.com/linked-helper/how-to-setup-separate-chrome-instance-for-windows-9ac9921b81b3
ANSWER 4
Score 3
You can run a separate instance of Chrome on Windows by creating a shortcut on your desktop with a different user-data directory.
1. Right click on the Chrome short on your desktop and click "Create shortcut"
2. Right click on the new shortcut "Google Chrome (2)" and click "Properties"
3. Look for the text box called Target, you'll see the path to the chrome executable
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
4. Add --user-data-dir="c:\your_dir_name" to the end of the executable
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --user-data-dir="c:\chrome2"
Chrome will automatically create the new user-data directory when you use this shortcut.
ANSWER 5
Score 3
You can use the Beta or Dev version of chrome, this is better because you get different icons and can still sync to your account.
I found the details from this article.