Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Támogatás keresése

Kerülje el a támogatási csalásokat. Sosem kérjük arra, hogy hívjon fel egy telefonszámot vagy osszon meg személyes információkat. Jelentse a gyanús tevékenységeket a „Visszaélés bejelentése” lehetőséggel.

Learn More

A témacsoportot lezárták és archiválták. Tegyen fel új kérdést, ha segítségre van szüksége.

about:config Query String/Specific Parameter

  • 2 válasz
  • 3 embernek van ilyen problémája
  • 2 megtekintés
  • Utolsó üzenet ettől: b9z7kmdn

more options

Is there any way to open the about:config page to a specific setting? I frequently toggle a particular setting on and off and would like a quick way to bookmark it for easy access.

I'm thinking something along the lines of: about:config?setting=media.peerconnection.enabled

Even better would be to allow a new value to be passed in as well: about:config?setting=media.peerconnection.enabled&value=true

Is there any way to open the about:config page to a specific setting? I frequently toggle a particular setting on and off and would like a quick way to bookmark it for easy access. I'm thinking something along the lines of: about:config?setting=media.peerconnection.enabled Even better would be to allow a new value to be passed in as well: about:config?setting=media.peerconnection.enabled&value=true

Kiválasztott megoldás

That is no longer possible. In the past before the change to the aboutconfig.html page there was support for a ?filter=xx parameter, but they didn't include this in the new design. There is support for a regular expression if you include an asterisk (*) in the search query.

You can possibly use the Browser Console to toggle/modify a specific pref. You can recall code you the past, so it isn't that much work.


var pn = "media.peerconnection.enabled";
var cv = Services.prefs.getBoolPref(pn);
Services.prefs.setBoolPref(pn, cv == false ? true : false);
console.log(pn, Services.prefs.getBoolPref(pn));

Válasz olvasása eredeti szövegkörnyezetben 👍 1

Összes válasz (2)

more options

Kiválasztott megoldás

That is no longer possible. In the past before the change to the aboutconfig.html page there was support for a ?filter=xx parameter, but they didn't include this in the new design. There is support for a regular expression if you include an asterisk (*) in the search query.

You can possibly use the Browser Console to toggle/modify a specific pref. You can recall code you the past, so it isn't that much work.


var pn = "media.peerconnection.enabled";
var cv = Services.prefs.getBoolPref(pn);
Services.prefs.setBoolPref(pn, cv == false ? true : false);
console.log(pn, Services.prefs.getBoolPref(pn));

more options

Thanks for the reply! That's not what I was hoping for, but it's a workable solution