Last active
February 19, 2025 06:37
-
-
Save lenicyl/ee42e49b6e26cb01f80d27e6f7b84d68 to your computer and use it in GitHub Desktop.
Firefox Preferences
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Security ***/ | |
// Firefox Strict Mode | |
user_pref("browser.contentblocking.category", "strict"); | |
// Enable https only mode | |
user_pref("dom.security.https_only_mode", true); | |
// DNS over HTTPS | |
user_pref("network.trr.mode", 3); | |
user_pref("network.trr.uri", "https://mozilla.cloudflare-dns.com/dns-query"); | |
// userChrome | |
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true); | |
/** Preference ***/ | |
// Sort Ctrl+Tab by recently used order | |
user_pref("browser.ctrlTab.sortByRecentlyUsed", true); | |
// Open PDFs inline | |
user_pref("browser.download.open_pdf_attachments_inline", true); | |
// Show "Save as" menu on download | |
user_pref("browser.download.useDownloadDir", false); | |
user_pref("browser.download.always_ask_before_handling_new_types", true); | |
// Highlight all references on ctrl+F | |
user_pref("findbar.highlightAll", true); | |
// Disable search and form history | |
user_pref("browser.formfill.enable", false); | |
// Enable autoscrolling | |
user_pref("general.autoScroll", true); | |
// Disable bookmarks toolbar | |
user_pref("browser.toolbars.bookmarks.visibility", "never"); | |
// Disable Firefox Password Manager | |
user_pref("signon.rememberSignons", false); | |
// Firefox Suggest: Calculator and Converter | |
user_pref("browser.urlbar.suggest.calculator", true); | |
user_pref("browser.urlbar.unitConversion.enabled", true); | |
// KDE Filepicker | |
user_pref("widget.use-xdg-desktop-portal.file-picker", 1); | |
// Alt Click to save link as | |
user_pref("browser.altClickSave", true); | |
/** Bloat ***/ | |
user_pref("browser.newtabpage.activity-stream.feeds.topsites", false); | |
user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false); | |
user_pref("extensions.pocket.enabled", false); // Pocket | |
user_pref("browser.urlbar.trending.featureGate", false); // Trending searches | |
user_pref("browser.urlbar.addons.featureGate", false); // Addon Suggestions |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment