diff --git a/Common-Overrides.md b/Common-Overrides.md index fc666fd..1199427 100644 --- a/Common-Overrides.md +++ b/Common-Overrides.md @@ -163,12 +163,15 @@ user_pref("browser.newtabpage.activity-stream.showWeather", true); These are the main prefs responsible for AI features built into Firefox. Betterfox disables them, but you can re-enable them. ```javascript -// PREF: restore AI features - master switch +// PREF: restore AI features user_pref("browser.ml.enable", true); // PREF: restore AI chat user_pref("browser.ml.chat.enabled", true); +// PREF: disable AI chatbot option in right click menu +user_pref("browser.ml.chat.menu", false); + // PREF: smart tab groups user_pref("browser.tabs.groups.smart.enabled", false);