diff --git a/FastFox.js b/FastFox.js index 7779948..a548150 100644 --- a/FastFox.js +++ b/FastFox.js @@ -11,7 +11,7 @@ * FasterFox * * "Non ducor duco." * * priority: speedy browsing * - * version: August 2021 * + * version: September 2021 * * url: https://github.com/yokoffing/Better-Fox * ***************************************************************************/ @@ -23,6 +23,7 @@ ****************************************************************************/ // PREF: force enable all Webrender prefs +// DISABLING WILL NOT BE SUPPORTED SOON | https://groups.google.com/a/mozilla.org/g/dev-platform/c/__ZtiiEn0u0/m/fbTlD-I4AAAJ?pli=1 // [1] https://hacks.mozilla.org/2017/10/the-whole-web-at-maximum-fps-how-webrender-gets-rid-of-jank/ // [2] https://wiki.mozilla.org/Platform/GFX/WebRender_Where // [3] https://www.reddit.com/r/firefox/comments/fo1jwz/make_firefox_faster/flhh5l2/ @@ -30,8 +31,9 @@ user_pref("gfx.webrender.all", true); // PREF: if your hardware doesn't support Webrender, you can fallback to Webrender's software renderer // [NOTE] Both preferences need to be "true" if you're using the software renderer. +// DISABLING WILL NOT BE SUPPORTED SOON | https://groups.google.com/a/mozilla.org/g/dev-platform/c/__ZtiiEn0u0/m/fbTlD-I4AAAJ?pli=1 // [1] https://www.ghacks.net/2020/12/14/how-to-find-out-if-webrender-is-enabled-in-firefox-and-how-to-enable-it-if-it-is-not/ -// user_pref("gfx.webrender.all", true); +user_pref("gfx.webrender.all", true); // user_pref("gfx.webrender.software", true); // PREF: Lazy Image Loading @@ -49,6 +51,11 @@ user_pref("browser.sessionstore.restore_tabs_lazily", true); // default // May set to "true" if your hardware is very old. user_pref("browser.startup.preXulSkeletonUI", false); +// PREF: about:home startup cache +// A cache for the initial about:home document that is loaded by default at startup. +// The purpose of the cache is to improve startup performance. +user_pref("browser.startup.homepage.abouthome_cache.enabled", true); + // PREF: process count // Having more content processes can improve performance when using multiple tabs but // it will also use more memory. You can reduce the number of content processes if your