1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 19:02:09 +02:00
tldr/pages.fr/common/chromium.md
Gatien fad355136f
chromium, code, gimp, powershell : add French translation (#8037)
* translate code in French

* translate powershell in French

* switch to imperative

* translate gimp in French

* translate chromium in French

* Fix imperative error on powershell

* Fix imperative error on chromium
2022-04-20 09:41:19 +10:00

36 lines
1 KiB
Markdown

# chromium
> Navigateur Web open source principalement développé et maintenu par Google.
> Plus d'informations : <https://www.chromium.org/developers/how-tos/run-chromium-with-flags/>.
- Ouvre une URL ou un fichier spécifique :
`chromium {{https://exemple.com|chemin/vers/fichier.html}}`
- Ouvre en mode navigation privée :
`chromium --incognito {{exemple.com}}`
- Ouvre dans une nouvelle fenêtre :
`chromium --new-window {{exemple.com}}`
- Ouvre en mode application (sans barres d'outils, barre d'URL, boutons, etc) :
`chromium --app={{https://exemple.com}}`
- Utilise un serveur proxy :
`chromium --proxy-server="{{://hostname:66}}" {{exemple.com}}`
- Ouvre dans un répertoire de profil personnalisé :
`chromium --user-data-dir={{chemin/vers/répertoire}}`
- Ouvre sans validation CORS (utile pour tester une API) :
`chromium --user-data-dir={{chemin/vers/répertoire}} --disable-web-security`
- Ouvre avec une fenêtre outils de développement pour chaque onglet ouvert :
`chromium --auto-open-devtools-for-tabs`