Files
cheatsheet-tldr/tldr/windows/chromium
2025-10-29 00:20:46 +00:00

43 lines
1.2 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
syntax: markdown
tags: [tldr, windows]
source: https://github.com/tldr-pages/tldr.git
---
# 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:
`chromium {{https://example.com|path o ile.html}}`
- 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.):
`chromium --app {{https://example.com}}`
- Use a proxy server:
`chromium --proxy-server "{{socks5://hostname:66}}" {{example.com}}`
- Open with a custom profile directory:
`chromium --user-data-dir {{path o\directory}}`
- Open without CORS validation (useful to test an API):
`chromium --user-data-dir {{path o\directory}} --disable-web-security`
- Open with a DevTools window for each tab opened:
`chromium --auto-open-devtools-for-tabs`