Skip to content

Commit

Permalink
Changes for version 1.0.1-a.15
Browse files Browse the repository at this point in the history
  • Loading branch information
Codextor committed Nov 1, 2024
1 parent f4bbdd8 commit b073a0c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ Inspired from the config tweaks [Betterfox](https://github.com/yokoffing/Betterf
Zen's default preferences are already based on Betterfox (as mentioned [here](https://github.com/zen-browser/desktop?tab=readme-ov-file#third-party-code)).
But there are a few differences, which are covered by Better Zen.

Tested with Zen version [1.0.1-a.14](https://github.com/zen-browser/desktop/releases/tag/1.0.1-a.14)
Tested with Zen version [1.0.1-a.15](https://github.com/zen-browser/desktop/releases/tag/1.0.1-a.15)
Based on Betterfox version [129](https://github.com/yokoffing/Betterfox/releases/tag/129.0)

## How to use Better Zen
1. Download the Better Zen user.js file from [`here`](https://github.com/Codextor/better-zen/raw/main/better-zen/user.js). (Right Click -> Save Link As...)
Expand Down
23 changes: 22 additions & 1 deletion better-zen/user.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Better Zen Profile User Preferences
// Tested with Zen version 1.0.1-a.14
// Tested with Zen version 1.0.1-a.15

// 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.
Expand All @@ -8,8 +8,11 @@

user_pref("browser.contentblocking.category", "strict");
user_pref("browser.profiles.enabled", true);
user_pref("browser.sessionstore.interval", 60000);
user_pref("browser.tabs.tabmanager.enabled", false);

user_pref("captivedetect.canonicalURL", "");

user_pref("content.notify.interval", 100000);

user_pref("cookiebanners.service.mode", 1);
Expand All @@ -19,17 +22,35 @@ user_pref("dom.security.https_first", true);

user_pref("editor.truncate_user_pastes", false);

user_pref("gfx.canvas.accelerated.cache-items", 4096);
user_pref("gfx.canvas.accelerated.cache-size", 512);
user_pref("gfx.content.skia-font-cache-size", 20);

user_pref("media.cache_readahead_limit", 7200);
user_pref("media.memory_cache_max_size", 65536);
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.captive-portal-service.enabled", false);
user_pref("network.connectivity-service.enabled", false);
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("network.ssl_tokens_cache_capacity", 10240);

user_pref("permissions.default.desktop-notification", 2);
user_pref("permissions.default.geo", 2);
user_pref("permissions.manager.defaultsUrl", "");

user_pref("security.OCSP.enabled", 0);
user_pref("security.mixed_content.block_display_content", true);
user_pref("security.pki.crlite_mode", 2);
user_pref("security.remote_settings.crlite_filters.enabled", true);

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

user_pref("webchannel.allowObject.urlWhitelist", "");

0 comments on commit b073a0c

Please sign in to comment.