Last active
August 3, 2025 19:32
-
-
Save ecnepsnai/2f7b87c8817638d5baad2b21ea34bfa6 to your computer and use it in GitHub Desktop.
Firefox preferences
This file contains hidden or 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
// 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