About:config: Difference between revisions

From MozillaZine Knowledge Base
Jump to navigationJump to search
(Filter bar section added)
m (→‎Filter bar: minor regexp changes)
Line 30: Line 30:
  security*tls
  security*tls
  /^security[.]ssl3.*rsa|security[.].*tls/i
  /^security[.]ssl3.*rsa|security[.].*tls/i
  /security[.]ssl3.*(128|256)/i
  /^security[.]ssl3.*(128|256)/i
  /^(?!gecko[.]handler|network[.]IDN|network[.]protocol|print|security[.]ssl)/i
  /^(?!gecko[.]handler|network[.]IDN|network[.]protocol|print|security[.]ssl)/i
  /^browser[.]|^dom[.]|^network[.](?!IDN|protocol)/i
  /^(?=browser[.]|dom[.]|network[.](?!IDN|protocol))/i


==See also==
==See also==

Revision as of 23:10, 26 July 2010

about:config is a feature of Mozilla applications which lists application settings (known as preferences) that are read from the profile files prefs.js and user.js, and from application defaults. Many of these preferences are not present in the Options or Preferences dialog. Using about:config is one of several methods of modifying preferences and adding other "hidden" ones.

Warning: Modifying preferences can, in rare circumstances, break Firefox, Thunderbird or the Mozilla Suite, or can cause strange behavior. Only do so if you know what you are doing or are following trustworthy advice.

Opening about:config

  • In Firefox and Mozilla Suite/SeaMonkey, type about:config in the Location Bar (address bar) and press Enter to display the list of preferences, as shown below in Firefox 3. (If you see a page with the warning message, This might void your warranty!, click the button labeled "I'll be careful, I promise!", to continue.)
  • In Thunderbird 1.5 or later, about:config is accessed via "Tools -> Options -> Advanced -> General -> Config Editor (button)". For earlier Thunderbird versions, use the AboutConfig extension.
    Alternatively, choose Tools – Options – General and specify about:config as the Thunderbird Start Page. Then ensure View – Layout – Message Pane is checked and choose: Go – Mail Start Page
  • For Nvu, there's a compatible version of the AboutConfig extension here.

Adding, modifying, and resetting preferences

To add a new preference, context-click (right-click) anywhere in the list of preferences. In the context menu, select New then select the type of preference you are adding.

  • String is any sequence of text
  • Integer is a number
  • Boolean is true-false

To modify an existing preference, context-click (right-click) on the preference, select Modify and type in the new value. In some cases, Toggle will be the selection offered for boolean (true-false) preferences.

To reset a preference to its default value or to remove an added preference, context-click (right-click) on the preference and select Reset. If you added the entry via about:config, the preference will no longer be listed after restarting the program. (For more information about resetting preferences, see this article).

Filter bar

You can use the Filter bar at the top of the about:config page to filter the prefs that you want to inspect. Starting with Firefox 3, the Filter bar also accepts wildcards and a regular expression in the form of /regexp/i to filter preferences [1]. The i switch is for ignore case. That is the default for normal searches, but you need to specify it if you want the RegExp match to be case insensitive. The RegExp tests for a match of name;value of a preference.
See also Regular Expressions - MDC

Some examples:

security*ssl
security*ssl*rsa
security*tls
/^security[.]ssl3.*rsa|security[.].*tls/i
/^security[.]ssl3.*(128|256)/i
/^(?!gecko[.]handler|network[.]IDN|network[.]protocol|print|security[.]ssl)/i
/^(?=browser[.]|dom[.]|network[.](?!IDN|protocol))/i

See also

External links