Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can you run multiple Chrome instances with different proxies?

I'm trying to run multiple instances of of Chrome with different proxies. Searching the web I've found that chrome supposedly supports 'chrome.exe --proxy-server="proxy:port" ' from the command line. But I've tried that and it doesn't work.

Is there any way to run multiple instances of Chrome with different proxies?

Thanks!

like image 619
Phil Avatar asked Nov 15 '12 15:11

Phil


2 Answers

The answer from gengkev is correct. For all users combing from search engines who need a quick "copy and paste" solution, use this link target (windows):

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --proxy-server="http://proxy01.your.proxy:3128" --user-data-dir="%LOCALAPPDATA%\Google\Chrome-proxy01\User Data"

Chrome will create this new folder "Chrome-proxy01" on its own. With this you can have multiple chrome shortcuts using different proxy servers.

like image 176
Daniel Walter Avatar answered Sep 17 '22 20:09

Daniel Walter


If you're running more than one instance of chrome with different flags, I think you need to specify different paths to --user-data-dir.

like image 44
gengkev Avatar answered Sep 20 '22 20:09

gengkev