chromium, pages/*: redirect common Chromium-based browsers as aliases, add Indonesian translations (#13842)

This commit is contained in:
Reinhart Previano Koentjoro
2024-10-19 12:01:38 +07:00
committed by GitHub
parent 634d0cd940
commit 541529b37a
24 changed files with 408 additions and 0 deletions

37
pages/windows/chromium.md Normal file
View File

@@ -0,0 +1,37 @@
# 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/to/file.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/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`

View File

@@ -0,0 +1,12 @@
# microsoft-edge
> The Microsoft Edge command-line utility is available as `msedge` on Windows and `microsoft-edge` for other platforms.
> More information: <https://microsoft.com/edge>.
- View the documentation for Microsoft Edge for Windows:
`tldr -p windows msedge`
- View the documentation for Microsoft Edge for other platforms:
`tldr -p common microsoft-edge`

38
pages/windows/msedge.md Normal file
View File

@@ -0,0 +1,38 @@
# msedge
> Modern web browser developed by Microsoft based on the Chromium web browser developed by Google.
> This command is available instead as `microsoft-edge` for other platforms.
> Note: Additional command arguments from `chromium` may also be usable to control Microsoft Edge.
> More information: <https://microsoft.com/edge>.
- Open a specific URL or file:
`msedge {{https://example.com|path/to/file.html}}`
- Open in InPrivate mode:
`msedge --inprivate {{example.com}}`
- Open in a new window:
`msedge --new-window {{example.com}}`
- Open in application mode (without toolbars, URL bar, buttons, etc.):
`msedge --app={{https://example.com}}`
- Use a proxy server:
`msedge --proxy-server="{{socks5://hostname:66}}" {{example.com}}`
- Open with a custom profile directory:
`msedge --user-data-dir={{path/to/directory}}`
- Open without CORS validation (useful to test an API):
`msedge --user-data-dir={{path/to/directory}} --disable-web-security`
- Open with a DevTools window for each tab opened:
`msedge --auto-open-devtools-for-tabs`