Created
December 5, 2019 17:58
-
-
Save y1zhou/63229280b5b7ba0b0fe49d2a51b4d073 to your computer and use it in GitHub Desktop.
Edge style smooth scrolling for FireFox
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pref("general.smoothScroll.mouseWheel.durationMinMS", 50); | |
pref("general.smoothScroll.mouseWheel.durationMaxMS", 150); | |
pref("general.smoothScroll.currentVelocityWeighting", 0); | |
pref("general.smoothScroll.stopDecelerationWeighting", 0.82); | |
pref("mousewheel.default.delta_multiplier_y", 200); | |
pref("mousewheel.min_line_scroll_amount", 25); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment