Files
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

37 lines
1.0 KiB
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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`