Advertisement
Guest User

Untitled

a guest
Jun 17th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. // This is the Debian specific preferences file for Firefox
  2. // You can make any change in here, it is the purpose of this file.
  3. // You can, with this file and all files present in the
  4. // /etc/firefox directory, override any preference you can see in
  5. // about:config.
  6. //
  7. // Note that pref("name", value, locked) is allowed in these
  8. // preferences files if you don't want users to be able to override
  9. // some preferences.
  10.  
  11. pref("extensions.update.enabled", true);
  12.  
  13. // Use LANG environment variable to choose locale
  14. pref("intl.locale.requested", "");
  15.  
  16. // Disable default browser checking.
  17. pref("browser.shell.checkDefaultBrowser", false);
  18.  
  19. // Disable openh264.
  20. pref("media.gmp-gmpopenh264.enabled", false);
  21.  
  22. // Default to classic view for about:newtab
  23. pref("browser.newtabpage.enhanced", false, sticky);
  24.  
  25. // Disable health report upload
  26. pref("datareporting.healthreport.uploadEnabled", false);
  27.  
  28. // Default to no suggestions in the urlbar. This still brings a panel asking
  29. // the user whether they want to opt-in on first use.
  30. pref("browser.urlbar.suggest.searches", false);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement