src/prefs.js: less animations, one click urlbar select

Thanks to Matej Ľach for suggesting these preferences in:
https://gitlab.com/postmarketOS/pmaports/-/merge_requests/1488
This commit is contained in:
Oliver Smith 2020-08-10 10:29:57 +02:00
parent 49698e65c5
commit df9ac23760
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -20,3 +20,12 @@ pref('browser.newtabpage.enabled', false);
// Allow UI customizations with userChrome.css and userContent.css
pref('toolkit.legacyUserProfileCustomizations.stylesheets', true);
// Select the entire URL with one click
pref('browser.urlbar.clickSelectsAll', true);
// Disable cosmetic animations, save CPU
pref('toolkit.cosmeticAnimations.enabled', false);
// Disable download animations, save CPU
pref('browser.download.animateNotifications', false);