Skip to content

Instantly share code, notes, and snippets.

@lenicyl
Last active July 31, 2024 12:01
Show Gist options
  • Save lenicyl/d9469be71cfdc9fc93dddfaf294ec7bd to your computer and use it in GitHub Desktop.
Save lenicyl/d9469be71cfdc9fc93dddfaf294ec7bd to your computer and use it in GitHub Desktop.
My Arkenfox Config
/** 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.custom_uri", "https://dns.quad9.net/dns-query");
user_pref("network.trr.mode", 3);
user_pref("network.trr.uri", "https://dns.quad9.net/dns-query");
/** 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);
// Cache
user_pref("browser.cache.disk.parent_directory", "/ssd/mozilla/cache");
/** 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
/** Testing ***/
user_pref("media.hardware-video-decoding.force-enabled", true); // FEATURE_HARDWARE_VIDEO_DECODING_DISABLE
// user_pref("media.autoplay.default", 5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment