Chrome
Chrome is a freeware web browser developed by Google that uses the WebKit layout engine. It was first released as a beta version for Microsoft Windows on September 2, 2008, and the public stable release was on December 11, 2008. As of May 2012, Chrome has approximately 33% worldwide usage share of web browsers, making it the most widely used web browser.[1]
- Chrome [EN] @ Apple App Store
- Chrome [EN] @ Homebrew Cask
Documentation
Additional Resources
13 pages found:
- Anybox
- Bear
- Bitwarden
- Decentraleyes
- Dropbox
- Google Drive
- Joplin
- Privacy Badger
- Raindrop.io
- uBlock Origin
- uMatrix
- Web Developer
Parameters
- --incognito
- Causes the browser to launch directly in incognito mode.
- --profile-directory=DIRECTORY
- Selects DIRECTORY of profile to associate with the first browser launched.
- --user-data-dir=DIRECTORY
- Specifies the user data DIRECTORY. This is the one directory which stores all persistent data.
Examples
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