Skip to content

Commit 498c909

Browse files
committed
Improved performance
1 parent 661dcbb commit 498c909

File tree

2 files changed

+6
-24
lines changed

2 files changed

+6
-24
lines changed

src/browser/app/profile/better-fox.js

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -100,24 +100,6 @@ pref("security.insecure_connection_text.enabled", true);
100100
pref("security.insecure_connection_text.pbmode.enabled", true);
101101
pref("network.IDN_show_punycode", true);
102102

103-
/** HTTPS-FIRST POLICY ***/
104-
pref("dom.security.https_first", true);
105-
pref("dom.security.https_first_schemeless", true);
106-
107-
/** PASSWORDS ***/
108-
pref("signon.formlessCapture.enabled", false);
109-
pref("signon.privateBrowsingCapture.enabled", false);
110-
pref("network.auth.subresource-http-auth-allow", 1);
111-
pref("editor.truncate_user_pastes", false);
112-
113-
/** MIXED CONTENT + CROSS-SITE ***/
114-
pref("security.mixed_content.block_display_content", true);
115-
pref("pdfjs.enableScripting", false);
116-
pref("extensions.postDownloadThirdPartyPrompt", false);
117-
118-
/** HEADERS / REFERERS ***/
119-
pref("network.http.referer.XOriginTrimmingPolicy", 2);
120-
121103
/** CONTAINERS ***/
122104
pref("privacy.userContext.ui.enabled", true);
123105

@@ -193,10 +175,6 @@ pref("browser.display.focus_ring_width", 0);
193175
pref("layout.css.prefers-color-scheme.content-override", 2);
194176
pref("browser.privateWindowSeparation.enabled", false); // WINDOWS
195177

196-
/** COOKIE BANNER HANDLING ***/
197-
pref("cookiebanners.service.mode", 1);
198-
pref("cookiebanners.service.mode.privateBrowsing", 1);
199-
200178
/** FULLSCREEN NOTICE ***/
201179
pref("full-screen-api.transition-duration.enter", "0 0");
202180
pref("full-screen-api.transition-duration.leave", "0 0");

src/browser/app/profile/zen-browser.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ pref('zen.workspaces.enabled', true);
8989
pref('zen.watermark.enabled', true);
9090

9191
// Smooth scrolling
92-
user_pref('apz.overscroll.enabled', true); // not DEFAULT on Linux
93-
user_pref('general.smoothScroll', true); // DEFAULT
92+
pref('apz.overscroll.enabled', true); // not DEFAULT on Linux
93+
pref('general.smoothScroll', true); // DEFAULT
9494

9595
// Privacy
9696
pref('dom.private-attribution.submission.enabled', false);
@@ -108,4 +108,8 @@ pref('browser.migrate.vivaldi.enabled', true);
108108
pref('browser.migrate.opera-gx.enabled', true);
109109
pref('browser.migrate.opera.enabled', true);
110110

111+
// DNS
112+
// pref('network.proxy.type', 0);
113+
// pref('network.trr.mode', 5);
114+
111115
#include better-fox.js

0 commit comments

Comments
 (0)