chromium: refresh (#7811)

This commit is contained in:
Axel Navarro
2022-02-24 16:28:04 -03:00
committed by GitHub
parent 326cc8a262
commit a8bcde4a28

View File

@@ -1,15 +1,11 @@
# chromium
> Open-source web browser from Google.
> More information: <https://chromium.org>.
> Open-source web browser principally developed and maintained by Google.
> More information: <https://www.chromium.org/developers/how-tos/run-chromium-with-flags/>.
- Open a file:
- Open a specific URL or file:
`chromium {{path/to/file.html}}`
- Open a URL:
`chromium {{example.com}}`
`chromium {{https://example.com|path/to/file.html}}`
- Open in incognito mode:
@@ -19,10 +15,22 @@
`chromium --new-window {{example.com}}`
- Open in app mode (without toolbars, URL bar, buttons, etc.):
- Open in application mode (without toolbars, URL bar, buttons, etc.):
`chromium --app='{{https://example.com}}'`
`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/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`