this post was submitted on 15 Jan 2024
22 points (95.8% liked)

Firefox

17787 readers
10 users here now

A place to discuss the news and latest developments on the open-source browser Firefox

founded 4 years ago
MODERATORS
 

There are a few things that I change on top of arkenfox but I can't find the proper setting name to make them persist.

One example is, I block all third party cookies in the enhanced protection mode.

top 2 comments
sorted by: hot top controversial new old
[โ€“] [email protected] 13 points 9 months ago (1 children)

By observing the HTML of the about:preferences#privacy page, we can find that the checkbox "Cookies" has a preference value of network.cookie.cookieBehavior, as does the dropdown next to it, so that's the preference value that is changed.

You can see in the console of about:preferences that if you type in Services.prefs.getIntPref('network.cookie.cookieBehavior') it will return a 1. You can also see this if you have about:config open as you are toggling the preferences dropdown - the value will change there.

Hope that helps!

[โ€“] driveway 3 points 9 months ago

I can't believe I didn't think about checking the html :) I also didn't know that about:config updates in real time. I'd prefer to have a toggle like "changed items this session", but this does the job too.