diff --git a/librewolf.overrides.cfg b/librewolf.overrides.cfg deleted file mode 100644 index ef034f5..0000000 --- a/librewolf.overrides.cfg +++ /dev/null @@ -1,114 +0,0 @@ -// -/* You may copy+paste this file and use it as it is. - * - * If you make changes to your about:config while the program is running, the - * changes will be overwritten by this file when the application restarts. - * - * To make lasting changes to preferences, you will have to edit this file. - */ - -/**************************************************************************** - * Betterfox - LibreWolf overrides * - * Quis custodiet ipsos custodes * - * version: August 2023 * - * url: https://github.com/yokoffing/Betterfox * - * license: https://github.com/yokoffing/Betterfox/blob/main/LICENSE * - * README: https://github.com/yokoffing/Betterfox/blob/main/README.md * -****************************************************************************/ - -// Better off just using a user.js file: -// [1] https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/41963 -// [2] https://github.com/arkenfox/user.js/issues/1695#issuecomment-1666505218 - -// Where do I find my librewolf.overrides.cfg? https://librewolf.net/docs/settings/#where-do-i-find-my-librewolfoverridescfg -// LibreWolf default prefs: https://gitlab.com/librewolf-community/settings/-/blob/master/librewolf.cfg - -/**************************************************************************** - * SECTION: FASTFOX * -****************************************************************************/ -defaultPref("layout.css.grid-template-masonry-value.enabled", true); -defaultPref("dom.enable_web_task_scheduling", true); - -/**************************************************************************** - * SECTION: SECUREFOX * -****************************************************************************/ -/** TRACKING PROTECTION ***/ -defaultPref("urlclassifier.trackingSkipURLs", "*.reddit.com, *.twitter.com, *.twimg.com"); -defaultPref("urlclassifier.features.socialtracking.skipURLs", "*.instagram.com, *.twitter.com, *.twimg.com"); - -/** OCSP & CERTS / HPKP ***/ -// Use CRLite instead of OCSP -defaultPref("security.OCSP.enabled", 0); -defaultPref("security.OCSP.require", false); -defaultPref("security.pki.crlite_mode", 2); - -/** RFP ***/ -// Limits refresh rate to 60mHz, breaks timezone, and forced light theme -// [1] https://librewolf.net/docs/faq/#what-are-the-most-common-downsides-of-rfp-resist-fingerprinting -defaultPref("privacy.resistFingerprinting", false); - -// WebGL -// Breaks Map sites, NYT articles, Nat Geo, and more -// [1] https://manu.ninja/25-real-world-applications-using-webgl/ -defaultPref("webgl.disabled", false); - -// DRM -// Netflix, Udemy, Spotify, etc. -defaultPref("media.eme.enabled", true); - -/** HTTPS-ONLY MODE ***/ -defaultPref("dom.security.https_only_mode_error_page_user_suggestions", true); - -/** PASSWORDS AND AUTOFILL ***/ -defaultPref("signon.generation.enabled", false); - -/** WEBRTC ***/ -// Breaks video conferencing -defaultPref("media.peerconnection.ice.no_host", false); - -/** PERMISSIONS ***/ -defaultPref("permissions.default.geo", 2); -defaultPref("permissions.default.desktop-notification", 2); -defaultPref("dom.push.enabled", false); - -/**************************************************************************** - * SECTION: PESKYFOX * -****************************************************************************/ -/** MOZILLA UI ***/ -defaultPref("layout.css.prefers-color-scheme.content-override", 2); -defaultPref("toolkit.legacyUserProfileCustomizations.stylesheets", true); -defaultPref("browser.compactmode.show", true); - -/** FULLSCREEN ***/ -defaultPref("full-screen-api.transition-duration.enter", "0 0"); -defaultPref("full-screen-api.transition-duration.leave", "0 0"); -defaultPref("full-screen-api.warning.delay", 0); -defaultPref("full-screen-api.warning.timeout", 0); - -/** URL BAR ***/ -defaultPref("browser.urlbar.suggest.engines", false); -defaultPref("browser.urlbar.suggest.topsites", false); -defaultPref("browser.urlbar.suggest.calculator", true); -defaultPref("browser.urlbar.unitConversion.enabled", true); - -/** AUTOPLAY ***/ -// Default breaks some video players -defaultPref("media.autoplay.blocking_policy", 0); - -/** PASSWORDS ***/ -defaultPref("editor.truncate_user_pastes", false); - -/** DOWNLOADS ***/ -defaultPref("browser.download.autohideButton", true); - -/** PDF ***/ -defaultPref("browser.download.open_pdf_attachments_inline", true); - -/** TAB BEHAVIOR ***/ -defaultPref("browser.tabs.loadBookmarksInTabs", true); -defaultPref("browser.bookmarks.openInTabClosesMenu", false); -defaultPref("findbar.highlightAll", true); - -/**************************************************************************** - * END: BETTERFOX * -****************************************************************************/