Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Firefox #260

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 64 additions & 0 deletions reference/static/commands/tools/firefox.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
firefox
---


`firefox` opens a new firefox window. Firefox is a free open source web browser.

~~~bash
$ firefox
~~~

---

##Basic Usage
`$ firefox`

---

###Useful Options / Examples


#### `firefox <url>`

~~~bash
#Open the best website ever
$ firefox https://cspragmatics/ref
~~~

Opens the website <url> using firefox.


#### `firefox -new-tab <url>`

~~~bash
$ firefox -new-tab www.google.com
~~~

Open url in a new tab.

#### `firefox -new-window <url>`

~~~bash
$ firefox -new-window www.google.com
~~~

Open url in a new window.

#### `firefox -private`

~~~bash
$ firefox -private
~~~

Start firefox in private browsing mode.

#### `firefox -safe-mode`

~~~bash
$ firefox -safe-mode
~~~

Start firefox in safe mode. Disables all third party extensions. Useful if extension breaks browser or you're having trouble with an extension.