diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:34:35 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:34:35 +0000 |
commit | 63de81373e18709bf3cf805a9aea810d7105be62 (patch) | |
tree | 381c798425ec7b9d4634609f0ac776a4b3e7e309 /debian/browser.js.in | |
parent | Adding upstream version 115.7.0esr. (diff) | |
download | firefox-esr-debian/115.7.0esr-1_deb12u1.tar.xz firefox-esr-debian/115.7.0esr-1_deb12u1.zip |
Adding debian version 115.7.0esr-1~deb12u1.debian/115.7.0esr-1_deb12u1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/browser.js.in')
-rw-r--r-- | debian/browser.js.in | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/debian/browser.js.in b/debian/browser.js.in new file mode 100644 index 0000000000..429c4f4cd7 --- /dev/null +++ b/debian/browser.js.in @@ -0,0 +1,30 @@ +// This is the Debian specific preferences file for @Browser@ +// You can make any change in here, it is the purpose of this file. +// You can, with this file and all files present in the +// /etc/@browser@ directory, override any preference you can see in +// about:config. +// +// Note that pref("name", value, locked) is allowed in these +// preferences files if you don't want users to be able to override +// some preferences. + +pref("extensions.update.enabled", true); + +// Use LANG environment variable to choose locale +pref("intl.locale.requested", ""); + +// Disable default browser checking. +pref("browser.shell.checkDefaultBrowser", false); + +// Disable openh264. +pref("media.gmp-gmpopenh264.enabled", false); + +// Default to classic view for about:newtab +pref("browser.newtabpage.enhanced", false, sticky); + +// Disable health report upload +pref("datareporting.healthreport.uploadEnabled", false); + +// Default to no suggestions in the urlbar. This still brings a panel asking +// the user whether they want to opt-in on first use. +pref("browser.urlbar.suggest.searches", false); |