23 lines
684 B
Nix
23 lines
684 B
Nix
|
# extra preferences that cannot be
|
||
|
# set normally but have to instead
|
||
|
# set in mosilla.cfg
|
||
|
|
||
|
''//
|
||
|
|
||
|
// Automatically click cookiebanners although uBlock Origin might block them
|
||
|
lockPref("cookiebanners.bannerClicking.enabled", true);
|
||
|
lockPref("cookiebanners.service.mode", 2);
|
||
|
lockPref("cookiebanners.service.mode.privateBrowsing", 2);
|
||
|
|
||
|
// DNT although PrivacyBadger from policy handles this
|
||
|
lockPref("privacy.donottrackheader.enabled", true);
|
||
|
lockPref("privacy.donottrackheader.value", 1);
|
||
|
|
||
|
// New sidebar
|
||
|
lockPref("sidebar.revamp", true);
|
||
|
lockPref("sidebar.verticalTabs", true);
|
||
|
lockPref("sidebar.visibility", "always-show");
|
||
|
lockPref("sidebar.main.tools", "history,bookmarks");
|
||
|
|
||
|
//''
|