mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-18 06:00:56 +00:00
Update cheatsheets
This commit is contained in:
41
chromium
Normal file
41
chromium
Normal file
@@ -0,0 +1,41 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# chromium
|
||||
|
||||
> 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 specific URL or file:
|
||||
|
||||
`chromium {{https://example.com|path/to/file.html}}`
|
||||
|
||||
- Open in incognito mode:
|
||||
|
||||
`chromium --incognito {{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/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`
|
||||
Reference in New Issue
Block a user