diff --git a/reference/static/commands/tools/firefox.md b/reference/static/commands/tools/firefox.md new file mode 100644 index 0000000..e8b39db --- /dev/null +++ b/reference/static/commands/tools/firefox.md @@ -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 ` + +~~~bash +#Open the best website ever +$ firefox https://cspragmatics/ref +~~~ + +Opens the website using firefox. + + +#### `firefox -new-tab ` + +~~~bash +$ firefox -new-tab www.google.com +~~~ + +Open url in a new tab. + +#### `firefox -new-window ` + +~~~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. + + +