mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
chromium, pages/*: redirect common Chromium-based browsers as aliases, add Indonesian translations (#13842)
This commit is contained in:
parent
634d0cd940
commit
541529b37a
24 changed files with 408 additions and 0 deletions
8
pages.id/common/brave.md
Normal file
8
pages.id/common/brave.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# brave
|
||||||
|
|
||||||
|
> Perintah ini merupakan alias dari `chromium`.
|
||||||
|
> Informasi lebih lanjut: <https://support.brave.com/hc/en-us/articles/360044860011-How-Do-I-Use-Command-Line-Flags-in-Brave>.
|
||||||
|
|
||||||
|
- Tampilkan dokumentasi untuk perintah asli:
|
||||||
|
|
||||||
|
`tldr chromium`
|
37
pages.id/common/chromium.md
Normal file
37
pages.id/common/chromium.md
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
# chromium
|
||||||
|
|
||||||
|
> Aplikasi peramban web (web browser) bersumber terbuka yang terutama dikembangkan dan dikelola oleh Google.
|
||||||
|
> Catatan: Anda mungkin perlu menggantikan perintah `chromium` dengan peramban tujuan Anda, seperti `brave`, `google-chrome`, `opera`, atau `vivaldi`.
|
||||||
|
> Informasi lebih lanjut: <https://www.chromium.org/developers/how-tos/run-chromium-with-flags/>.
|
||||||
|
|
||||||
|
- Buka suatu URL atau berkas:
|
||||||
|
|
||||||
|
`chromium {{https://example.com|jalan/menuju/berkas.html}}`
|
||||||
|
|
||||||
|
- Buka dalam mode peramban privat (incognito):
|
||||||
|
|
||||||
|
`chromium --incognito {{example.com}}`
|
||||||
|
|
||||||
|
- Buka dalam jendela aplikasi baru:
|
||||||
|
|
||||||
|
`chromium --new-window {{example.com}}`
|
||||||
|
|
||||||
|
- Buka dalam mode aplikasi web (tanpa bilah toolbar, URL bar, tombol navigasi, dsb.):
|
||||||
|
|
||||||
|
`chromium --app={{https://example.com}}`
|
||||||
|
|
||||||
|
- Hubungkan peramban dengan suatu peladen proksi:
|
||||||
|
|
||||||
|
`chromium --proxy-server="{{socks5://hostname:66}}" {{example.com}}`
|
||||||
|
|
||||||
|
- Buka dengan direktori profil pengguna tertentu:
|
||||||
|
|
||||||
|
`chromium --user-data-dir={{jalan/menuju/direktori}}`
|
||||||
|
|
||||||
|
- Buka dengan menonaktifkan validasi CORS (berguna untuk menguji akses suatu API):
|
||||||
|
|
||||||
|
`chromium --user-data-dir={{jalan/menuju/direktori}} --disable-web-security`
|
||||||
|
|
||||||
|
- Selalu buka jendela alat DevTools (pembantu pengembang web) setiap kali membuka tab baru:
|
||||||
|
|
||||||
|
`chromium --auto-open-devtools-for-tabs`
|
38
pages.id/common/microsoft-edge.md
Normal file
38
pages.id/common/microsoft-edge.md
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
# microsoft-edge
|
||||||
|
|
||||||
|
> Aplikasi peramban web (web browser) dari Microsoft yang dibangun berdasarkan peramban Chromium yang dikembangkan oleh Google.
|
||||||
|
> Perintah ini tersedia sebagai `msedge` dalam perangkat Windows.
|
||||||
|
> Catatan: Anda mungkin dapat menggunakan argumen perintah `chromium` lainnya untuk dapat mengatur jalannya Microsoft Edge.
|
||||||
|
> Informasi lebih lanjut: <https://microsoft.com/edge>.
|
||||||
|
|
||||||
|
- Buka suatu URL atau berkas:
|
||||||
|
|
||||||
|
`microsoft-edge {{https://example.com|jalan/menuju/berkas.html}}`
|
||||||
|
|
||||||
|
- Buka dalam mode peramban privat (InPrivate):
|
||||||
|
|
||||||
|
`microsoft-edge --inprivate {{example.com}}`
|
||||||
|
|
||||||
|
- Buka dalam jendela aplikasi baru:
|
||||||
|
|
||||||
|
`microsoft-edge --new-window {{example.com}}`
|
||||||
|
|
||||||
|
- Buka dalam mode aplikasi web (tanpa bilah toolbar, URL bar, tombol navigasi, dsb.):
|
||||||
|
|
||||||
|
`microsoft-edge --app={{https://example.com}}`
|
||||||
|
|
||||||
|
- Hubungkan peramban dengan suatu peladen proksi:
|
||||||
|
|
||||||
|
`microsoft-edge --proxy-server="{{socks5://hostname:66}}" {{example.com}}`
|
||||||
|
|
||||||
|
- Buka dengan direktori profil pengguna tertentu:
|
||||||
|
|
||||||
|
`microsoft-edge --user-data-dir={{jalan/menuju/direktori}}`
|
||||||
|
|
||||||
|
- Buka dengan menonaktifkan validasi CORS (berguna untuk menguji akses suatu API):
|
||||||
|
|
||||||
|
`microsoft-edge --user-data-dir={{jalan/menuju/direktori}} --disable-web-security`
|
||||||
|
|
||||||
|
- Selalu buka jendela alat DevTools (pembantu pengembang web) setiap kali membuka tab baru:
|
||||||
|
|
||||||
|
`microsoft-edge --auto-open-devtools-for-tabs`
|
12
pages.id/common/msedge.md
Normal file
12
pages.id/common/msedge.md
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
# microsoft-edge
|
||||||
|
|
||||||
|
> Perintah Microsoft Edge tersedia sebagai `msedge` untuk platform Windows dan `microsoft-edge` untuk platform lainnya.
|
||||||
|
> Informasi lebih lanjut: <https://microsoft.com/edge>.
|
||||||
|
|
||||||
|
- Lihat dokumentasi untuk perintah Microsoft Edge untuk Windows:
|
||||||
|
|
||||||
|
`tldr -p windows msedge`
|
||||||
|
|
||||||
|
- Lihat dokumentasi untuk perintah Microsoft Edge untuk perangkat lainnya:
|
||||||
|
|
||||||
|
`tldr -p common microsoft-edge`
|
8
pages.id/common/opera.md
Normal file
8
pages.id/common/opera.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# opera
|
||||||
|
|
||||||
|
> Perintah ini merupakan alias dari `chromium`.
|
||||||
|
> Informasi lebih lanjut: <https://opera.com>.
|
||||||
|
|
||||||
|
- Tampilkan dokumentasi untuk perintah asli:
|
||||||
|
|
||||||
|
`tldr chromium`
|
8
pages.id/common/vivaldi.md
Normal file
8
pages.id/common/vivaldi.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# vivaldi
|
||||||
|
|
||||||
|
> Perintah ini merupakan alias dari `chromium`.
|
||||||
|
> Informasi lebih lanjut: <https://vivaldi.com>.
|
||||||
|
|
||||||
|
- Tampilkan dokumentasi untuk perintah asli:
|
||||||
|
|
||||||
|
`tldr chromium`
|
8
pages.id/linux/google-chrome-stable.md
Normal file
8
pages.id/linux/google-chrome-stable.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# google-chrome-stable
|
||||||
|
|
||||||
|
> Perintah ini merupakan alias dari `chromium`.
|
||||||
|
> Informasi lebih lanjut: <https://chrome.google.com>.
|
||||||
|
|
||||||
|
- Tampilkan dokumentasi untuk perintah asli:
|
||||||
|
|
||||||
|
`tldr chromium`
|
8
pages.id/linux/opera-stable.md
Normal file
8
pages.id/linux/opera-stable.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# opera-stable
|
||||||
|
|
||||||
|
> Perintah ini merupakan alias dari `chromium`.
|
||||||
|
> Informasi lebih lanjut: <https://opera.com>.
|
||||||
|
|
||||||
|
- Tampilkan dokumentasi untuk perintah asli:
|
||||||
|
|
||||||
|
`tldr chromium`
|
8
pages.id/linux/vivaldi-stable.md
Normal file
8
pages.id/linux/vivaldi-stable.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# vivaldi-stable
|
||||||
|
|
||||||
|
> Perintah ini merupakan alias dari `chromium`.
|
||||||
|
> Informasi lebih lanjut: <https://vivaldi.com>.
|
||||||
|
|
||||||
|
- Tampilkan dokumentasi untuk perintah asli:
|
||||||
|
|
||||||
|
`tldr chromium`
|
37
pages.id/windows/chromium.md
Normal file
37
pages.id/windows/chromium.md
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
# chromium
|
||||||
|
|
||||||
|
> Aplikasi peramban web (web browser) bersumber terbuka yang terutama dikembangkan dan dikelola oleh Google.
|
||||||
|
> Catatan: Anda mungkin perlu menggantikan perintah `chromium` dengan peramban tujuan Anda, seperti `brave`, `google-chrome`. `microsoft-edge`/`msedge`, `opera`, atau `vivaldi`.
|
||||||
|
> Informasi lebih lanjut: <https://www.chromium.org/developers/how-tos/run-chromium-with-flags/>.
|
||||||
|
|
||||||
|
- Buka suatu URL atau berkas:
|
||||||
|
|
||||||
|
`chromium {{https://example.com|jalan/menuju/berkas.html}}`
|
||||||
|
|
||||||
|
- Buka dalam mode peramban privat (incognito) (gunakan `--inprivate` untuk Microsoft Edge):
|
||||||
|
|
||||||
|
`{{chromium --incognito|msedge --inprivate}} {{example.com}}`
|
||||||
|
|
||||||
|
- Buka dalam jendela aplikasi baru:
|
||||||
|
|
||||||
|
`chromium --new-window {{example.com}}`
|
||||||
|
|
||||||
|
- Buka dalam mode aplikasi web (tanpa bilah toolbar, URL bar, tombol navigasi, dsb.):
|
||||||
|
|
||||||
|
`chromium --app={{https://example.com}}`
|
||||||
|
|
||||||
|
- Hubungkan peramban dengan suatu peladen proksi:
|
||||||
|
|
||||||
|
`chromium --proxy-server="{{socks5://hostname:66}}" {{example.com}}`
|
||||||
|
|
||||||
|
- Buka dengan direktori profil pengguna tertentu:
|
||||||
|
|
||||||
|
`chromium --user-data-dir={{jalan/menuju/direktori}}`
|
||||||
|
|
||||||
|
- Buka dengan menonaktifkan validasi CORS (berguna untuk menguji akses suatu API):
|
||||||
|
|
||||||
|
`chromium --user-data-dir={{jalan/menuju/direktori}} --disable-web-security`
|
||||||
|
|
||||||
|
- Selalu buka jendela alat DevTools (pembantu pengembang web) setiap kali membuka tab baru:
|
||||||
|
|
||||||
|
`chromium --auto-open-devtools-for-tabs`
|
12
pages.id/windows/microsoft-edge.md
Normal file
12
pages.id/windows/microsoft-edge.md
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
# microsoft-edge
|
||||||
|
|
||||||
|
> Perintah Microsoft Edge tersedia sebagai `msedge` untuk platform Windows dan `microsoft-edge` untuk platform lainnya.
|
||||||
|
> Informasi lebih lanjut: <https://microsoft.com/edge>.
|
||||||
|
|
||||||
|
- Lihat dokumentasi untuk perintah Microsoft Edge untuk Windows:
|
||||||
|
|
||||||
|
`tldr -p windows msedge`
|
||||||
|
|
||||||
|
- Lihat dokumentasi untuk perintah Microsoft Edge untuk perangkat lainnya:
|
||||||
|
|
||||||
|
`tldr -p common microsoft-edge`
|
38
pages.id/windows/msedge.md
Normal file
38
pages.id/windows/msedge.md
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
# msedge
|
||||||
|
|
||||||
|
> Aplikasi peramban web (web browser) dari Microsoft yang dibangun berdasarkan peramban Chromium yang dikembangkan oleh Google.
|
||||||
|
> Perintah ini tersedia sebagai `microsoft-edge` dalam perangkat selain Windows.
|
||||||
|
> Catatan: Anda mungkin dapat menggunakan argumen perintah `chromium` lainnya untuk dapat mengatur jalannya Microsoft Edge.
|
||||||
|
> Informasi lebih lanjut: <https://microsoft.com/edge>.
|
||||||
|
|
||||||
|
- Buka suatu URL atau berkas:
|
||||||
|
|
||||||
|
`msedge {{https://example.com|jalan/menuju/berkas.html}}`
|
||||||
|
|
||||||
|
- Buka dalam mode peramban privat (InPrivate):
|
||||||
|
|
||||||
|
`msedge --inprivate {{example.com}}`
|
||||||
|
|
||||||
|
- Buka dalam jendela aplikasi baru:
|
||||||
|
|
||||||
|
`msedge --new-window {{example.com}}`
|
||||||
|
|
||||||
|
- Buka dalam mode aplikasi web (tanpa bilah toolbar, URL bar, tombol navigasi, dsb.):
|
||||||
|
|
||||||
|
`msedge --app={{https://example.com}}`
|
||||||
|
|
||||||
|
- Hubungkan peramban dengan suatu peladen proksi:
|
||||||
|
|
||||||
|
`msedge --proxy-server="{{socks5://hostname:66}}" {{example.com}}`
|
||||||
|
|
||||||
|
- Buka dengan direktori profil pengguna tertentu:
|
||||||
|
|
||||||
|
`msedge --user-data-dir={{jalan/menuju/direktori}}`
|
||||||
|
|
||||||
|
- Buka dengan menonaktifkan validasi CORS (berguna untuk menguji akses suatu API):
|
||||||
|
|
||||||
|
`msedge --user-data-dir={{jalan/menuju/direktori}} --disable-web-security`
|
||||||
|
|
||||||
|
- Selalu buka jendela alat DevTools (pembantu pengembang web) setiap kali membuka tab baru:
|
||||||
|
|
||||||
|
`msedge --auto-open-devtools-for-tabs`
|
8
pages/common/brave.md
Normal file
8
pages/common/brave.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# brave
|
||||||
|
|
||||||
|
> This command is an alias of `chromium`.
|
||||||
|
> More information: <https://support.brave.com/hc/en-us/articles/360044860011-How-Do-I-Use-Command-Line-Flags-in-Brave>.
|
||||||
|
|
||||||
|
- View documentation for the original command:
|
||||||
|
|
||||||
|
`tldr chromium`
|
|
@ -1,6 +1,7 @@
|
||||||
# chromium
|
# chromium
|
||||||
|
|
||||||
> Open-source web browser principally developed and maintained by Google.
|
> 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`, `opera`, or `vivaldi`.
|
||||||
> More information: <https://www.chromium.org/developers/how-tos/run-chromium-with-flags/>.
|
> More information: <https://www.chromium.org/developers/how-tos/run-chromium-with-flags/>.
|
||||||
|
|
||||||
- Open a specific URL or file:
|
- Open a specific URL or file:
|
||||||
|
|
38
pages/common/microsoft-edge.md
Normal file
38
pages/common/microsoft-edge.md
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
# microsoft-edge
|
||||||
|
|
||||||
|
> Modern web browser developed by Microsoft based on the Chromium web browser developed by Google.
|
||||||
|
> This command is available instead as `msedge` for Windows.
|
||||||
|
> 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:
|
||||||
|
|
||||||
|
`microsoft-edge {{https://example.com|path/to/file.html}}`
|
||||||
|
|
||||||
|
- Open in InPrivate mode:
|
||||||
|
|
||||||
|
`microsoft-edge --inprivate {{example.com}}`
|
||||||
|
|
||||||
|
- Open in a new window:
|
||||||
|
|
||||||
|
`microsoft-edge --new-window {{example.com}}`
|
||||||
|
|
||||||
|
- Open in application mode (without toolbars, URL bar, buttons, etc.):
|
||||||
|
|
||||||
|
`microsoft-edge --app={{https://example.com}}`
|
||||||
|
|
||||||
|
- Use a proxy server:
|
||||||
|
|
||||||
|
`microsoft-edge --proxy-server="{{socks5://hostname:66}}" {{example.com}}`
|
||||||
|
|
||||||
|
- Open with a custom profile directory:
|
||||||
|
|
||||||
|
`microsoft-edge --user-data-dir={{path/to/directory}}`
|
||||||
|
|
||||||
|
- Open without CORS validation (useful to test an API):
|
||||||
|
|
||||||
|
`microsoft-edge --user-data-dir={{path/to/directory}} --disable-web-security`
|
||||||
|
|
||||||
|
- Open with a DevTools window for each tab opened:
|
||||||
|
|
||||||
|
`microsoft-edge --auto-open-devtools-for-tabs`
|
12
pages/common/msedge.md
Normal file
12
pages/common/msedge.md
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
# msedge
|
||||||
|
|
||||||
|
> 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`
|
8
pages/common/opera.md
Normal file
8
pages/common/opera.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# opera
|
||||||
|
|
||||||
|
> This command is an alias of `chromium`.
|
||||||
|
> More information: <https://opera.com>.
|
||||||
|
|
||||||
|
- View documentation for the original command:
|
||||||
|
|
||||||
|
`tldr chromium`
|
8
pages/common/vivaldi.md
Normal file
8
pages/common/vivaldi.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# vivaldi
|
||||||
|
|
||||||
|
> This command is an alias of `chromium`.
|
||||||
|
> More information: <https://vivaldi.com>.
|
||||||
|
|
||||||
|
- View documentation for the original command:
|
||||||
|
|
||||||
|
`tldr chromium`
|
8
pages/linux/google-chrome-stable.md
Normal file
8
pages/linux/google-chrome-stable.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# google-chrome-stable
|
||||||
|
|
||||||
|
> This command is an alias of `chromium`.
|
||||||
|
> More information: <https://chrome.google.com>.
|
||||||
|
|
||||||
|
- View documentation for the original command:
|
||||||
|
|
||||||
|
`tldr chromium`
|
8
pages/linux/opera-stable.md
Normal file
8
pages/linux/opera-stable.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# opera-stable
|
||||||
|
|
||||||
|
> This command is an alias of `chromium`.
|
||||||
|
> More information: <https://opera.com>.
|
||||||
|
|
||||||
|
- View documentation for the original command:
|
||||||
|
|
||||||
|
`tldr chromium`
|
8
pages/linux/vivaldi-stable.md
Normal file
8
pages/linux/vivaldi-stable.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# vivaldi-stable
|
||||||
|
|
||||||
|
> This command is an alias of `chromium`.
|
||||||
|
> More information: <https://vivaldi.com>.
|
||||||
|
|
||||||
|
- View documentation for the original command:
|
||||||
|
|
||||||
|
`tldr chromium`
|
37
pages/windows/chromium.md
Normal file
37
pages/windows/chromium.md
Normal 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`
|
12
pages/windows/microsoft-edge.md
Normal file
12
pages/windows/microsoft-edge.md
Normal 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
38
pages/windows/msedge.md
Normal 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`
|
Loading…
Add table
Reference in a new issue