enable custom userChrome.js

This commit is contained in:
Luke Smith 2023-01-19 09:11:18 -05:00
parent 56b61ca1d5
commit a247e3e851

View file

@ -30,3 +30,9 @@ user_pref("dom.push.enabled", false);
// Disable the pocket antifeature: // Disable the pocket antifeature:
user_pref("extensions.pocket.enabled", false); 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);