Firefox
Firefox is a free and open source web browser developed for Windows, OS X and Linux, with a mobile version for Android, by Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards.[1]
- Project Homepage [EN]
- Firefox [EN] @ Apple App Store
- Firefox [EN] @ Fedora Package
- Firefox [EN] @ Homebrew Cask
Documentation
Forks
Additional Resources
Extension:DynamicPageList3 (DPL3), version 3.6.4: Error: Error 1054: Unknown column 'ecl1.cl_to' in 'where clause' Function: MediaWiki\Extension\DynamicPageList3\Query::buildAndSelect - Firefox Query: SET STATEMENT max_statement_time=10 FOR SELECT DISTINCT IFNULL(cl1.cl_sortkey, REPLACE(CONCAT(CASE `wp_page`.page_namespace WHEN 1 THEN 'Talk:' WHEN 2 THEN 'User:' WHEN 3 THEN 'User_talk:' WHEN 4 THEN 'RaySoft:' WHEN 5 THEN 'RaySoft_talk:' WHEN 6 THEN 'File:' WHEN 7 THEN 'File_talk:' WHEN 8 THEN 'MediaWiki:' WHEN 9 THEN 'MediaWiki_talk:' WHEN 10 THEN 'Template:' WHEN 11 THEN 'Template_talk:' WHEN 12 THEN 'Help:' WHEN 13 THEN 'Help_talk:' WHEN 14 THEN 'Category:' WHEN 15 THEN 'Category_talk:' END, `wp_page`.page_title), '_', ' ')) AS `sortkey`,`wp_page`.page_namespace AS `page_namespace`,`wp_page`.page_id AS `page_id`,`wp_page`.page_title AS `page_title` FROM `wp_page` `wp_page` JOIN `wp_categorylinks` `cl1` ON ((`wp_page`.page_id = cl1.cl_from AND cl1.cl_to = 'Firefox')) JOIN `wp_categorylinks` `cl2` ON ((`wp_page`.page_id = cl2.cl_from AND (cl2.cl_to = 'Suite' OR cl2.cl_to = 'Server' OR cl2.cl_to = 'Application' OR cl2.cl_to = 'Shell_Command' OR cl2.cl_to = 'Add-on'))) LEFT OUTER JOIN `wp_categorylinks` `ecl1` ON ((`wp_page`.page_id = ecl1.cl_from AND ecl1.cl_to ='Component')) WHERE `wp_page`.page_is_redirect = 0 AND `wp_page`.page_namespace = 0 AND ecl1.cl_to IS NULL ORDER BY sortkey ASC LIMIT 500
Configuration
- Examples
- user.js by pyllyukko
- user.js by ghacksuserjs
Syntax
firefox [PARAMETER ...]
Parameters
- -CreateProfile NAME
- Create a new profile in the default directory, but do not start application. The profile will be named NAME in the 'Profile Manager'. NAME must not contain spaces.
- -CreateProfile "NAME PATH"
- Creates a new profile in the PATH directory, but do not start application. The profile will be named NAME in the 'Profile Manager'.
- NOTE:NAME and PATH are quoted together, and are separated by exactly 1 space (as with the previous syntax, NAME must not contain spaces).
- NOTE:PATH must not exist and you must not already have a profile called NAME.
- -new-instance
- Open new instance, not a new window in running instance, which allows multiple copies of application to be open at a time.
- -new-tab URL
- Open URL in a new tab.
- -new-window URL
- Open URL in a new window.
- -private
- Opens Firefox in permanent private browsing mode.
- -P, -ProfileManager
- Start with 'Profile Manager'.
- -P NAME
- Bypass 'Profile Manager' and launch application with the profile named NAME. Useful for dealing with multiple profiles.
- NOTE:NAME is case sensitive.
- -profile PATH
- Start with the profile with the given PATH. PATH can either be an absolute path (/path/to/profile) or a relative path (path/to/profile).
- -setDefaultBrowser
- Set the application as the default browser.
- -url [URL ...]
- Open URL in a new tab or window, depend on the browser option. -url can be omitted. You may list multiple URLs, separated by spaces.
Examples
for profile in 'alex' 'marty'; do
open -a 'Firefox' -n --args -private -P "${profile}"
done