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.
Post History
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 ab...
Answer
#1: Initial revision
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); ```