@@ -942,18 +942,11 @@ async function startBrowser({
942942 "browser.download.dir" : tempDir ,
943943 // Print silently in a pdf
944944 "print.always_print_silent" : true ,
945- "print.show_print_progress" : false ,
946945 print_printer : "PDF" ,
947946 "print.printer_PDF.print_to_file" : true ,
948947 "print.printer_PDF.print_to_filename" : printFile ,
949- // Enable OffscreenCanvas
950- "gfx.offscreencanvas.enabled" : true ,
951948 // Disable gpu acceleration
952949 "gfx.canvas.accelerated" : false ,
953- // Enable the `round` CSS function.
954- "layout.css.round.enabled" : true ,
955- // This allow to copy some data in the clipboard.
956- "dom.events.asyncClipboard.clipboardItem" : true ,
957950 // It's helpful to see where the caret is.
958951 "accessibility.browsewithcaret" : true ,
959952 // Disable the newtabpage stuff.
@@ -962,6 +955,12 @@ async function startBrowser({
962955 "browser.topsites.contile.enabled" : false ,
963956 // Disable logging for remote settings.
964957 "services.settings.loglevel" : "off" ,
958+ // Disable AI/ML functionality.
959+ "browser.ml.enable" : false ,
960+ "browser.ml.chat.enabled" : false ,
961+ "browser.ml.linkPreview.enabled" : false ,
962+ "browser.tabs.groups.smart.enabled" : false ,
963+ "browser.tabs.groups.smart.userEnabled" : false ,
965964 ...extraPrefsFirefox ,
966965 } ;
967966 }
0 commit comments