From 0ad5825a92ff7429f7010bbd197f54e18117305c Mon Sep 17 00:00:00 2001 From: z3rOR0ne Date: Thu, 23 Feb 2023 23:37:31 -0800 Subject: [PATCH] :sparkles: Further customized librewolf browser --- firefox_notes.txt | 6 ++++++ firefox_preferences/chrome/userChrome.css | 8 ++++++++ 2 files changed, 14 insertions(+) create mode 100644 firefox_preferences/chrome/userChrome.css diff --git a/firefox_notes.txt b/firefox_notes.txt index 74d68153..c76e8935 100644 --- a/firefox_notes.txt +++ b/firefox_notes.txt @@ -80,6 +80,7 @@ browser.newtabpage.activity-stream.telemetry set to false browser.newtabpage.activity-stream.section.highlights.includePocket to false browser.tabs.crashReporting.sendReport to false browser.uidensity to 1 (makes the browser's tabs not so huge for firefox 89+) +browser.chrome.site_icons to false (removes favicons) browser.tabs.tabsmanager.enabled to false accessibility.force_disabled to 1 (improves performance) extensions.unifiedExtensions.enabled to false (to remove item visually, remove all extensions from list) @@ -127,3 +128,8 @@ browser.proton.modals.enabled set to false browser.proton.doorhangers.enabled set to false browser.proton.contextmenus.enabled set to false browser.sessionstore.resum_from_crash false + +Copy the chrome directory into the profile ($HOME/.librewolf/*.default-release) +This feature isn't officially supported anymore so enable it by heading to +about:config and find/set: +toolkit.legacyUserProfileCustomizations.stylesheets : true diff --git a/firefox_preferences/chrome/userChrome.css b/firefox_preferences/chrome/userChrome.css new file mode 100644 index 00000000..0a4eef99 --- /dev/null +++ b/firefox_preferences/chrome/userChrome.css @@ -0,0 +1,8 @@ +/* enable in about:config by setting true: + * toolkit.legacyUserProfileCustomizations.stylesheets*/ + +.urlbarView-favicon, +.tab-icon-image, +.tab-close-button { + display: none !important; +}