Skip to content

Commit

Permalink
Add better zen user preferences
Browse files Browse the repository at this point in the history
  • Loading branch information
Codextor committed Sep 11, 2024
1 parent feeedb2 commit a85aece
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions better-zen/user.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
// Better Zen Profile User Preferences
// Tested with Zen version 1.0.0-a.39

// If you make changes to your preferences from about:config in the browser,
// the changes will be overwritten by the below preferences on application restart.
//
// To make your changes persistent, set them below within the user.js file.

user_pref("browser.contentblocking.category", "strict");
user_pref("browser.profiles.enabled", true);

user_pref("cookiebanners.service.mode", 1);
user_pref("cookiebanners.service.mode.privateBrowsing", 1);

user_pref("dom.security.https_first", true);

user_pref("editor.truncate_user_pastes", false);

user_pref("media.peerconnection.ice.default_address_only", true);
user_pref("media.peerconnection.ice.proxy_only_if_behind_proxy", true);

user_pref("network.auth.subresource-http-auth-allow", 1);
user_pref("network.dns.disablePrefetch", true);
user_pref("network.dns.disablePrefetchFromHTTPS", true);
user_pref("network.http.referer.XOriginTrimmingPolicy", 2);
user_pref("network.predictor.enabled", false);
user_pref("network.prefetch-next", false);

user_pref("security.mixed_content.block_display_content", true);

user_pref("signon.formlessCapture.enabled", false);
user_pref("signon.privateBrowsingCapture.enabled", false);

0 comments on commit a85aece

Please sign in to comment.