2018-11-05 19:11:02 +00:00
|
|
|
# chromium
|
|
|
|
|
2022-02-24 19:28:04 +00:00
|
|
|
> Open-source web browser principally developed and maintained by Google.
|
|
|
|
> More information: <https://www.chromium.org/developers/how-tos/run-chromium-with-flags/>.
|
2018-11-05 19:11:02 +00:00
|
|
|
|
2022-02-24 19:28:04 +00:00
|
|
|
- Open a specific URL or file:
|
2018-11-05 19:11:02 +00:00
|
|
|
|
2022-02-24 19:28:04 +00:00
|
|
|
`chromium {{https://example.com|path/to/file.html}}`
|
2018-11-05 19:11:02 +00:00
|
|
|
|
|
|
|
- Open in incognito mode:
|
|
|
|
|
|
|
|
`chromium --incognito {{example.com}}`
|
|
|
|
|
|
|
|
- Open in a new window:
|
|
|
|
|
|
|
|
`chromium --new-window {{example.com}}`
|
|
|
|
|
2022-02-24 19:28:04 +00:00
|
|
|
- Open in application mode (without toolbars, URL bar, buttons, etc.):
|
2018-11-05 19:11:02 +00:00
|
|
|
|
2022-02-24 19:28:04 +00:00
|
|
|
`chromium --app={{https://example.com}}`
|
2018-11-05 19:11:02 +00:00
|
|
|
|
|
|
|
- Use a proxy server:
|
|
|
|
|
|
|
|
`chromium --proxy-server="{{socks5://hostname:66}}" {{example.com}}`
|
2022-02-24 19:28:04 +00:00
|
|
|
|
|
|
|
- Open with a custom profile directory:
|
|
|
|
|
|
|
|
`chromium --user-data-dir={{path/to/directory}}`
|
|
|
|
|
|
|
|
- Open without CORS validation (useful to test an API):
|
|
|
|
|
|
|
|
`chromium --user-data-dir={{path/to/directory}} --disable-web-security`
|
|
|
|
|
|
|
|
- Open with a DevTools window for each tab opened:
|
|
|
|
|
|
|
|
`chromium --auto-open-devtools-for-tabs`
|