From 949ce1752f03087791e87e76298a5e5cbe8b8691 Mon Sep 17 00:00:00 2001 From: yokoffing Date: Mon, 6 Sep 2021 20:09:12 -0400 Subject: [PATCH] Pesky Sept 2021 (#39) --- PeskyFox.js | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/PeskyFox.js b/PeskyFox.js index 16b09c0..4d89ba0 100644 --- a/PeskyFox.js +++ b/PeskyFox.js @@ -11,7 +11,7 @@ * PeskyFox * * "Aquila non capit muscas." * * priority: remove annoyances * - * version: August 2021 * + * version: September 2021 * * url: https://github.com/yokoffing/Better-Fox * ***************************************************************************/ @@ -166,13 +166,13 @@ user_pref("browser.compactmode.show", true); // PREF: restore "View image info" user_pref("browser.menu.showViewImageInfo", true); -// PREF: do not unload tabs on low memory +// PREF: unload tabs on low memory // Firefox will detect if your computer’s memory is running low (less than 400MB) // and suspend tabs that you have not used in awhile. // https://support.mozilla.org/en-US/questions/1262073 // Available for testing in Nightly: // https://blog.nightly.mozilla.org/2021/05/14/these-weeks-in-firefox-issue-93/ -// user_pref("browser.tabs.unloadOnLowMemory", false); // default +user_pref("browser.tabs.unloadOnLowMemory", true); // PREF: URL bar suggestions (bookmarks, history, open tabs) / dropdown options in the URL bar // user_pref("browser.urlbar.suggest.bookmarks", true); @@ -256,6 +256,18 @@ user_pref("devtools.debugger.ui.editor-wrapping", true); // PREF: print preview user_pref("print.tab_modal.enabled", true); // default +// PREF: CSS Constructable Stylesheets +user_pref("layout.css.constructable-stylesheets.enabled", true); + +// PREF: CSS Masonry Layout +user_pref("layout.css.grid-template-masonry-value.enabled", true); + +// PREF: Web API inputmode +user_pref("dom.forms.inputmode", true); + +// PREF: Web API WebGPU +// user_pref("dom.webgpu.enabled", true); + /**************************************************************************** * SECTION: PDF * ****************************************************************************/ @@ -341,10 +353,13 @@ user_pref("browser.bookmarks.openInTabClosesMenu", false); // user_pref("accessibility.blockautorefresh", true); // user_pref("browser.meta_refresh_when_inactive.disabled", true); -// PREF: AVIF images +// PREF: AVIF image format // [1] https://www.omgubuntu.co.uk/2021/01/firefox-86-avif-image-support user_pref("image.avif.enabled", true); // default +// PREF: JPEG XL image format +user_pref("image.jxl.enabled", true); + // PREF: Prevent password truncation when submitting form data // [1] https://www.ghacks.net/2020/05/18/firefox-77-wont-truncate-text-exceeding-max-length-to-address-password-pasting-issues/ user_pref("editor.truncate_user_pastes", false);