Welcome to the Power Users community on Codidact!
Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.
How to unlock/set locked preferences in Firefox-family browsers?
How do you unlock about:config settings which are locked? How do you set them despite being locked?
As an example, Librewolf disables the password manager, which I find silly. However, they also disable your ability to turn it back on.
The about:config
key appears to be signon.rememberSignons
. It is set to false
and greyed out. I tried adding pref("signon.rememberSignons", true);
to my librewolf.overrides.cfg
but it is still disabled.
- How can I unlock it?
- How can I set it despite being locked?
1 answer
The following users marked this post as Works for me:
User | Comment | Date |
---|---|---|
matthewsnyder | (no comment) | Sep 29, 2023 at 20:48 |
It seems possible to do this with unlockPref
.
unlockPref("signon.rememberSignons");
This technically only "unlocks" the setting, but in my case when unlocked it changes to true
on its own in about:config
, probably because that's the default. To explicitly set the desired value you can use:
pref("signon.rememberSignons", true);
0 comment threads