Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

about:config values

  • 6 replies
  • 12 have this problem
  • 1 view
  • Last reply by cor-el

more options

I'm using cck2 extension (https://mike.kaply.com/cck2/) to customize firefox in my organization but i have to change some default options and i think it is possible changing some values in about:config page but it is very difficult to me to find which parameters i have to change. Could you indicate me which values i have to find in about:config page? I include screenshots of the options i have to fix as default options in my installation. Thanks in advance

I'm using cck2 extension (https://mike.kaply.com/cck2/) to customize firefox in my organization but i have to change some default options and i think it is possible changing some values in about:config page but it is very difficult to me to find which parameters i have to change. Could you indicate me which values i have to find in about:config page? I include screenshots of the options i have to fix as default options in my installation. Thanks in advance
Attached screenshots

All Replies (6)

more options

What is it you want to do? There are many add-ons that can help.

On the about:config page, any settings that have changed from the default setting are listed in Bold type.

Go to the Mozilla Add-ons Web Page {web link} (There’s a lot of good stuff here) and search for what you want.

more options

I tried your suggestions earlier but the list in bold is very very long and it is very difficult for me to associate the wanted option and the parameter in about:config. For example browser.cache.disk.capacity set to 0 changes the Cached Web Content?

more options
more options

Easiest is to start with the default settings and make a change in the user interface to modify a setting. Then check on the about:config page if a pref was changed. You can click the Status header to sort by this column (locked, user set, default). Note that not all settings might be stored in a pref (e.g. the crash reporter). You can disable the disk cache if you do not want to use it (filter for cache on the about:config page).

  • browser.cache.disk.enable

For clearing history there are two sets ("Clear Recent History" and "Clear history when Firefox closes").

  • privacy.cpd.*
  • privacy.clearOnShutdown.*
  • privacy.sanitize.sanitizeOnShutdown

Cookies: network.cookie.*

Firefox Health Report:

  • datareporting.*
  • datareporting.healthreport.*
  • datareporting.healthreport.service.enabled [21+]
  • datareporting.healthreport.uploadEnabled [21+]

I use these to prevent creating extra prefs:

lockPref("datareporting.sessions.current.main", 0);
lockPref("datareporting.sessions.currentIndex", 0);
defaultPref("datareporting.healthreport.uploadEnabled", false);
defaultPref("datareporting.policy.dataSubmissionEnabled", false);
defaultPref("datareporting.healthreport.service.enabled", false);

See also:

You can read the comments in the source code.

Modified by cor-el

more options

Thanks to everybody. Cor-el your suggestion is useful but takes time and patience, I think that a table with firefox options and relative values on about:config page will be very useful for users.

more options

In a lot of cases you can use the DOM Inspector to check what attributes are present for a specific setting to see if there is one that shows the involved pref.

See also: