aports/community/firefox/vendor-prefs.js
ptrcnull d671dd840f community/firefox: disable Privacy-Preserving Attributions by default
a feature that caters to advertisers and actually decreases privacy for end-users;
disabling it makes it a no-op without throwing any errors
2024-07-11 21:30:02 +00:00

23 lines
801 B
JavaScript

// Use LANG environment variable to choose locale
pref("intl.locale.requested", "");
// Use system-provided dictionaries
pref("spellchecker.dictionary_path", "/usr/share/hunspell");
// Disable default browser checking.
pref("browser.shell.checkDefaultBrowser", false);
// Don't disable our bundled extensions in the application directory
pref("extensions.autoDisableScopes", 11);
pref("extensions.shownSelectionUI", true);
// Disable sponsored tiles from "Mozilla Tiles Service"
pref("browser.topsites.contile.enabled", false);
// Disable Widevine CDM support (doesn't work on musl anyway)
pref("media.gmp-widevinecdm.visible", false);
pref("media.gmp-widevinecdm.enabled", false);
// Disable Privacy-Preserving Attribution Measurement
pref("dom.private-attribution.submission.enabled", false);