Skip to content

Instantly share code, notes, and snippets.

@ecnepsnai
Last active August 3, 2025 19:32
Show Gist options
  • Save ecnepsnai/2f7b87c8817638d5baad2b21ea34bfa6 to your computer and use it in GitHub Desktop.
Save ecnepsnai/2f7b87c8817638d5baad2b21ea34bfa6 to your computer and use it in GitHub Desktop.
Firefox preferences
// Disable top stories and hide checkbox
pref("browser.newtabpage.activity-stream.feeds.section.topstories", false);
pref("browser.newtabpage.activity-stream.feeds.system.topstories", false);
// Disabled sponsored shortcuts & stories and hide checkbox
pref("browser.newtabpage.activity-stream.showSponsored", false);
pref("browser.newtabpage.activity-stream.showSponsoredCheckboxes", false);
pref("browser.newtabpage.activity-stream.system.showSponsoredCheckboxes", false);
// Disable weather
pref("browser.newtabpage.activity-stream.showWeather", false);
pref("browser.newtabpage.activity-stream.system.showWeather", false);
// Disable wallpaper suggestions
pref("browser.newtabpage.activity-stream.newtabWallpapers.enabled", false);
// Disable and hide AI chatbot
pref("browser.ml.chat.sidebar", false);
pref("browser.ml.chat.enabled", false);
pref("browser.ml.enable", false);
// Disable extension suggestions
pref("extensions.getAddons.discovery.api_url", "");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment