tldr/pages/common/firefox.md
Waldir Pimenta b7926ee5db firefox: improve example descriptions (#3276)
Also fix the main description to conform to the style guide.
2019-09-21 22:39:37 +02:00

870 B

firefox

A free and open source web browser. More information: https://developer.mozilla.org/en-US/docs/Mozilla/Command_Line_Options.

  • Launch Firefox and open a web page:

firefox {{https://www.duckduckgo.com}}

  • Open a new window:

firefox --new-window {{https://www.duckduckgo.com}}

  • Open a private (incognito) window:

firefox --private-window

  • Search for "wikipedia" using the default search engine:

firefox --search "{{wikipedia}}"

  • Launch Firefox in safe mode, with all extensions disabled:

firefox --safe-mode

  • Take a screenshot of a web page in headless mode:

firefox --headless --screenshot {{path/to/output_file.png}} {{https://example.com/}}

  • Use a specific profile directory to allow multiple separate instances of Firefox to run at once:

firefox --new-instance --profile {{path/to/directory}} {{https://example.com/}}