Disabled warning message.

This commit is contained in:
Jocelyn Le Sage 2024-09-29 17:45:46 -04:00
parent c6c9fd6d33
commit 646af130f1

View File

@ -3,6 +3,8 @@ pref("browser.download.dir", "/config/downloads");
pref("browser.download.folderList", 2); pref("browser.download.folderList", 2);
// Disable the privacy notice page. // Disable the privacy notice page.
pref("toolkit.telemetry.reportingpolicy.firstRun", false); pref("toolkit.telemetry.reportingpolicy.firstRun", false);
// Disable some warning messages.
pref("security.sandbox.warn_unprivileged_namespaces", false);
// Prevent closing Firefox when closing the last tab. // Prevent closing Firefox when closing the last tab.
pref("browser.tabs.closeWindowWithLastTab", false); pref("browser.tabs.closeWindowWithLastTab", false);
// Disable confirmation before quitting with Ctrl+Q. Needed to allow Firefox // Disable confirmation before quitting with Ctrl+Q. Needed to allow Firefox