4

As a developer who works with multiple client systems, I have a Chrome Profile with logins and shortcuts and bookmarks for each. Equally so with Edge.


I need to be able to control which browser profile is launched. Ideally to specify the browser command line args.


In settings.json, have al.browser, we need al.browser.args, and / or al.browser.profile

On Windows, Chrome, fully qualified launch:


"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --profile-directory="Default"

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --profile-directory="Profile 1"

etc...


On Mac, Chrome fully qualified launch:


open -n -a "Google Chrome" --args --profile-directory="Default"

open -n -a "Google Chrome" --args --profile-directory="Profile 1"

etc...


Very similar for Edge.


Thanks

Category: Development
STATUS DETAILS
New