13 lines
468 B
JavaScript
13 lines
468 B
JavaScript
|
// SLE overrides for default settings
|
||
|
pref("layout.word_select.stop_at_punctuation", true);
|
||
|
pref("intl.locale.matchOS", true);
|
||
|
|
||
|
// disable call home features
|
||
|
pref("datareporting.healthreport.service.enabled", false);
|
||
|
pref("datareporting.healthreport.uploadEnabled", false);
|
||
|
pref("datareporting.policy.dataSubmissionEnabled", false);
|
||
|
pref("toolkit.telemetry.enabled", false);
|
||
|
|
||
|
// turn on Tracking protection by default
|
||
|
pref("privacy.trackingprotection.enabled", true);
|