Jump to content

Template:egChromeProfile

From RaySoft

Syntax

{{egChromeProfile}}

Examples

Start multiple Chrome instances with different profiles using open on macOS
app_config_dir="${HOME}/Library/Application Support/Google/Chrome"

for profile in 'alex' 'marty'; do
  open -a 'Google Chrome' -n --args --incognito \
    --profile-directory="${app_config_dir}/${profile}"
done