3535/****************************************************************************
3636 * Betterfox *
3737 * "Ad meliora" *
38- * version: 119 *
38+ * version: 121 *
3939 * url: https://github.com/yokoffing/Betterfox *
4040 ****************************************************************************/
4141
@@ -50,8 +50,8 @@ pref('gfx.canvas.accelerated.cache-items', 4096);
5050pref ( 'gfx.canvas.accelerated.cache-size' , 512 ) ;
5151pref ( 'gfx.content.skia-font-cache-size' , 20 ) ;
5252
53- /** BROWSER CACHE ***/
54- pref ( 'browser.cache.disk.enable ' , false ) ;
53+ /** DISK CACHE ***/
54+ pref ( 'browser.cache.jsbc_compression_level ' , 3 ) ;
5555
5656/** MEDIA CACHE ***/
5757pref ( 'media.memory_cache_max_size' , 65536 ) ;
@@ -68,15 +68,14 @@ pref('network.http.max-connections', 1800);
6868pref ( 'network.http.max-persistent-connections-per-server' , 10 ) ;
6969pref ( 'network.http.max-urgent-start-excessive-connections-per-host' , 5 ) ;
7070pref ( 'network.http.pacing.requests.enabled' , false ) ;
71- pref ( 'network.dnsCacheExpiration' , 86400 ) ;
71+ pref ( 'network.dnsCacheExpiration' , 3600 ) ;
7272pref ( 'network.dns.max_high_priority_threads' , 8 ) ;
7373pref ( 'network.ssl_tokens_cache_capacity' , 10240 ) ;
7474
75- /** IMPLICIT OUTBOUND ***/
75+ /** SPECULATIVE LOADING ***/
7676pref ( 'network.dns.disablePrefetch' , true ) ;
7777pref ( 'network.prefetch-next' , false ) ;
7878pref ( 'network.predictor.enabled' , false ) ;
79- pref ( 'network.predictor.enable-prefetch' , false ) ;
8079
8180/** EXPERIMENTAL ***/
8281pref ( 'layout.css.grid-template-masonry-value.enabled' , true ) ;
@@ -102,7 +101,6 @@ pref('browser.download.start_downloads_in_tmp_dir', true);
102101pref ( 'browser.helperApps.deleteTempFileOnExit' , true ) ;
103102pref ( 'browser.uitour.enabled' , false ) ;
104103pref ( 'privacy.globalprivacycontrol.enabled' , true ) ;
105- pref ( 'privacy.globalprivacycontrol.functionality.enabled' , true ) ;
106104
107105/** OCSP & CERTS / HPKP ***/
108106pref ( 'security.OCSP.enabled' , 0 ) ;
@@ -134,6 +132,7 @@ pref('network.IDN_show_punycode', true);
134132
135133/** HTTPS-FIRST POLICY ***/
136134pref ( 'dom.security.https_first' , true ) ;
135+ pref ( 'dom.security.https_first_schemeless' , true ) ;
137136
138137/** PASSWORDS ***/
139138pref ( 'signon.rememberSignons' , false ) ;
@@ -149,6 +148,7 @@ pref('extensions.formautofill.creditCards.enabled', false);
149148/** MIXED CONTENT + CROSS-SITE ***/
150149pref ( 'security.mixed_content.block_display_content' , true ) ;
151150pref ( 'security.mixed_content.upgrade_display_content' , true ) ;
151+ pref ( 'security.mixed_content.upgrade_display_content.image' , true ) ;
152152pref ( 'pdfjs.enableScripting' , false ) ;
153153pref ( 'extensions.postDownloadThirdPartyPrompt' , false ) ;
154154
@@ -240,18 +240,16 @@ pref('browser.privateWindowSeparation.enabled', false); // WINDOWS
240240/** COOKIE BANNER HANDLING ***/
241241pref ( 'cookiebanners.service.mode' , 1 ) ;
242242pref ( 'cookiebanners.service.mode.privateBrowsing' , 1 ) ;
243- pref ( 'cookiebanners.service.enableGlobalRules' , true ) ;
244243
245244/** FULLSCREEN NOTICE ***/
246- pref ( 'full-screen-api.transition-duration.enter' , '25 25 ' ) ;
247- pref ( 'full-screen-api.transition-duration.leave' , '25 25 ' ) ;
245+ pref ( 'full-screen-api.transition-duration.enter' , '0 0 ' ) ;
246+ pref ( 'full-screen-api.transition-duration.leave' , '0 0 ' ) ;
248247pref ( 'full-screen-api.warning.delay' , - 1 ) ;
249248pref ( 'full-screen-api.warning.timeout' , 0 ) ;
250249
251250/** URL BAR ***/
252251pref ( 'browser.urlbar.suggest.calculator' , true ) ;
253252pref ( 'browser.urlbar.unitConversion.enabled' , true ) ;
254- pref ( 'browser.urlbar.suggest.topsites' , false ) ;
255253pref ( 'browser.urlbar.trending.featureGate' , false ) ;
256254
257255/** NEW TAB PAGE ***/
@@ -262,7 +260,6 @@ pref('browser.newtabpage.activity-stream.feeds.section.topstories', false);
262260pref ( 'extensions.pocket.enabled' , false ) ;
263261
264262/** DOWNLOADS ***/
265- pref ( 'browser.download.useDownloadDir' , false ) ;
266263pref ( 'browser.download.always_ask_before_handling_new_types' , true ) ;
267264pref ( 'browser.download.manager.addToRecentDocs' , false ) ;
268265
@@ -273,6 +270,7 @@ pref('browser.download.open_pdf_attachments_inline', true);
273270pref ( 'browser.bookmarks.openInTabClosesMenu' , false ) ;
274271pref ( 'browser.menu.showViewImageInfo' , true ) ;
275272pref ( 'findbar.highlightAll' , true ) ;
273+ pref ( 'layout.word_select.eat_space_to_next_word' , false ) ;
276274
277275/****************************************************************************
278276 * START: MY OVERRIDES *
0 commit comments