2025-03-14 21:59:59 -06:00
# chromium
> Open-source web browser principally developed and maintained by Google.
> Note: You may need to replace the `chromium` command with your desired web browser, such as `brave`, `google-chrome`, `microsoft-edge`/`msedge`, `opera`, or `vivaldi`.
> More information: <https://www.chromium.org/developers/how-tos/run-chromium-with-flags/>.
- Open a specific URL or file:
2025-12-16 10:20:31 -07:00
`chromium {{https://example.com|path\to\file.html}}`
2025-03-14 21:59:59 -06:00
- Open in incognito mode (use `--inprivate` for Microsoft Edge):
`{{chromium --incognito|msedge --inprivate}} {{example.com}}`
- Open in a new window:
`chromium --new-window {{example.com}}`
- Open in application mode (without toolbars, URL bar, buttons, etc.):
2025-12-16 10:20:31 -07:00
`chromium --app {{https://example.com}}`
2025-03-14 21:59:59 -06:00
- Use a proxy server:
2025-12-16 10:20:31 -07:00
`chromium --proxy-server "{{socks5://hostname:66}}" {{example.com}}`
2025-03-14 21:59:59 -06:00
- Open with a custom profile directory:
2025-12-16 10:20:31 -07:00
`chromium --user-data-dir {{path\to\directory}}`
2025-03-14 21:59:59 -06:00
- Open without CORS validation (useful to test an API):
2025-12-16 10:20:31 -07:00
`chromium --user-data-dir {{path\to\directory}} --disable-web-security`
2025-03-14 21:59:59 -06:00
- Open with a DevTools window for each tab opened:
`chromium --auto-open-devtools-for-tabs`