From a247e3e851666775d0b29111240c05401a990604 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Thu, 19 Jan 2023 09:11:18 -0500 Subject: [PATCH] enable custom userChrome.js --- .config/firefox/larbs.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.config/firefox/larbs.js b/.config/firefox/larbs.js index 452572f..7fc34a3 100644 --- a/.config/firefox/larbs.js +++ b/.config/firefox/larbs.js @@ -30,3 +30,9 @@ user_pref("dom.push.enabled", false); // Disable the pocket antifeature: user_pref("extensions.pocket.enabled", false); + +// Don't autodelete cookies on shutdown: +user_pref("clearOnShutdown.cookies", false); + +// Enable custom userChrome.js: +user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);