Permanently fix Chrome scroll speed












6















So, I am changing the scroll speed in Ubuntu using this answer:



Change mouse wheel scroll speed in Chrome on 12.04 (edit starter bar commandline)



Exec=/opt/google/chrome/google-chrome --scroll-pixels=150 %U



It works, but every time Chrome updates I need to do it again, is there any way I can permanently fix this issue?










share|improve this question

























  • Maybe use an extension?

    – Uri Herrera
    Feb 12 '13 at 20:50











  • I've opened a ticket on chrome bug tracker, join it to support the bug code.google.com/p/chromium/issues/detail?id=521211

    – yanpas
    Oct 5 '15 at 21:36











  • You can set permissions to the desktop file to read-only.

    – Michal Przybylowicz
    Aug 28 '18 at 6:28
















6















So, I am changing the scroll speed in Ubuntu using this answer:



Change mouse wheel scroll speed in Chrome on 12.04 (edit starter bar commandline)



Exec=/opt/google/chrome/google-chrome --scroll-pixels=150 %U



It works, but every time Chrome updates I need to do it again, is there any way I can permanently fix this issue?










share|improve this question

























  • Maybe use an extension?

    – Uri Herrera
    Feb 12 '13 at 20:50











  • I've opened a ticket on chrome bug tracker, join it to support the bug code.google.com/p/chromium/issues/detail?id=521211

    – yanpas
    Oct 5 '15 at 21:36











  • You can set permissions to the desktop file to read-only.

    – Michal Przybylowicz
    Aug 28 '18 at 6:28














6












6








6


2






So, I am changing the scroll speed in Ubuntu using this answer:



Change mouse wheel scroll speed in Chrome on 12.04 (edit starter bar commandline)



Exec=/opt/google/chrome/google-chrome --scroll-pixels=150 %U



It works, but every time Chrome updates I need to do it again, is there any way I can permanently fix this issue?










share|improve this question
















So, I am changing the scroll speed in Ubuntu using this answer:



Change mouse wheel scroll speed in Chrome on 12.04 (edit starter bar commandline)



Exec=/opt/google/chrome/google-chrome --scroll-pixels=150 %U



It works, but every time Chrome updates I need to do it again, is there any way I can permanently fix this issue?







google-chrome






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Aug 28 '18 at 2:31









muru

1




1










asked Feb 12 '13 at 20:46









Get Off My LawnGet Off My Lawn

2221316




2221316













  • Maybe use an extension?

    – Uri Herrera
    Feb 12 '13 at 20:50











  • I've opened a ticket on chrome bug tracker, join it to support the bug code.google.com/p/chromium/issues/detail?id=521211

    – yanpas
    Oct 5 '15 at 21:36











  • You can set permissions to the desktop file to read-only.

    – Michal Przybylowicz
    Aug 28 '18 at 6:28



















  • Maybe use an extension?

    – Uri Herrera
    Feb 12 '13 at 20:50











  • I've opened a ticket on chrome bug tracker, join it to support the bug code.google.com/p/chromium/issues/detail?id=521211

    – yanpas
    Oct 5 '15 at 21:36











  • You can set permissions to the desktop file to read-only.

    – Michal Przybylowicz
    Aug 28 '18 at 6:28

















Maybe use an extension?

– Uri Herrera
Feb 12 '13 at 20:50





Maybe use an extension?

– Uri Herrera
Feb 12 '13 at 20:50













I've opened a ticket on chrome bug tracker, join it to support the bug code.google.com/p/chromium/issues/detail?id=521211

– yanpas
Oct 5 '15 at 21:36





I've opened a ticket on chrome bug tracker, join it to support the bug code.google.com/p/chromium/issues/detail?id=521211

– yanpas
Oct 5 '15 at 21:36













You can set permissions to the desktop file to read-only.

– Michal Przybylowicz
Aug 28 '18 at 6:28





You can set permissions to the desktop file to read-only.

– Michal Przybylowicz
Aug 28 '18 at 6:28










3 Answers
3






active

oldest

votes


















5














Here is a solution which works perfectly:



sudo apt update
sudo apt install imwheel
gedit ~/.imwheelrc


Copy and paste the following into the newly-created .imwheelrc file (that you just made in your home directory via the gedit command above):



".*-chrome*"
None, Up, Button4, 3
None, Down, Button5, 3
Control_L, Up, Control_L|Button4
Control_L, Down, Control_L|Button5
Shift_L, Up, Shift_L|Button4
Shift_L, Down, Shift_L|Button5


3 is the "scroll speed multiplier." Use a larger number for faster scrolling, or a smaller number for slower scrolling. The ".*-chrome*" part says to apply these scroll wheel speed increase changes ONLY to chrome.



Run imwheel -b "4 5" to test your settings. When done testing, run killall imwheel to kill it, then make your edits to .imwheelrc, as desired, and run imwheel -b "4 5" again for more testing. Be sure to fully close and re-open Chrome each time you restart imwheel too, to ensure its new settings take effect. This must be done by right-clicking the little Chrome icon in the top-right of your desktop pane and going to "Exit".



Also keep in mind that if you are using a cheap mouse, your scroll wheel decoder may be lousy and miss encoder counts when moving the wheel fast. Therefore, in such a case, move the wheel at a reduced speed when testing the effect of imwheel, so that your mouse doesn't miss encoder counts on the scroll wheel, making you think imwheel isn't working right when it's really just your cheap hardware's problem.



Add imwheel -b "4 5" to Ubuntu's "Startup Applications" to get it to run every time the computer starts.



As Steven C. Howell says here:




Note that using the option -b "4 5" restricts imwheel to only affect the scroll wheel, discussed here.




Another answer by "tvn" here: https://askubuntu.com/a/304653/327339.

More answers here: Increase mouse wheel scroll speed.



Reference notes:



I am not the original author of the answers linked-to above, rather, user "tvn" and others are, although tvn's answer is lacking in that it replaces mouse scroll wheel movements with multiple arrow-key Arrow Up and Arrow Down key presses, which means you have to click in a window for it to take effect, and some things like the browser-based Jupyter Notebook Python programming environment scroll horribly like this! Therefore, Steven C. Howell gave an improved answer which keeps the scroll wheel mapping to the scroll wheel, instead of to keyboard up and down keys, but his answer is lacking in that it applies this new scroll wheel scaling to everything on your computer, so I just modified this answer 27 Aug. 2018 to reflect Steven Howell's answer, but with the addition of adding ".*-chrome*" to the top of the ~/.imwheelrc file so that these new scroll setting apply only to your Chrome browser, which is really what I want. Note also, I have made several significant and important edits and contributions to tvn's answer linked to above, but now I think this answer here is much better, and it's deviated too much from tvn's answer to even attempt to edit his answer further.



Tested in Ubuntu 14.04 LTS.



Update 3 Mar. 2019: tested in Ubuntu 18.04 LTS as well, and it seems the effect takes place immediately in Chrome now each time you run killall imwheel and then imwheel -b "4 5" to test new settings.






share|improve this answer


























  • You need a MEDAL. Thank you.

    – N3dst4
    yesterday



















3














unfortunately this function is deprecated and removed from Chrome and Chromium. It is not working anymore with the latest versions of Chrome.



https://code.google.com/p/chromium/issues/detail?id=154776



But you can use this quite cool plugin to speed up your scroll speed in Chrome on Linux.



https://chrome.google.com/webstore/detail/chromium-wheel-smooth-scr/khpcanbeojalbkpgpmjpdkjnkfcgfkhb






share|improve this answer


























  • The performance of the plugin is not so good. The speed is erratic.

    – Kin
    Oct 6 '16 at 7:28



















0














Try this alternative https://chrome.google.com/webstore/detail/gestures-for-google-chrom/jpkfjicglakibpenojifdiepckckakgk?utm_source=chrome-app-launcher-info-dialog. It has better performance than Chromium Wheel Smooth Scroller






share|improve this answer
























  • This has been fixed in chrome for a while now

    – Get Off My Lawn
    Dec 4 '16 at 18:38











  • @get-off-my-lawn could you provide better alternative?

    – ipeacocks
    Dec 4 '16 at 20:17











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f254367%2fpermanently-fix-chrome-scroll-speed%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























3 Answers
3






active

oldest

votes








3 Answers
3






active

oldest

votes









active

oldest

votes






active

oldest

votes









5














Here is a solution which works perfectly:



sudo apt update
sudo apt install imwheel
gedit ~/.imwheelrc


Copy and paste the following into the newly-created .imwheelrc file (that you just made in your home directory via the gedit command above):



".*-chrome*"
None, Up, Button4, 3
None, Down, Button5, 3
Control_L, Up, Control_L|Button4
Control_L, Down, Control_L|Button5
Shift_L, Up, Shift_L|Button4
Shift_L, Down, Shift_L|Button5


3 is the "scroll speed multiplier." Use a larger number for faster scrolling, or a smaller number for slower scrolling. The ".*-chrome*" part says to apply these scroll wheel speed increase changes ONLY to chrome.



Run imwheel -b "4 5" to test your settings. When done testing, run killall imwheel to kill it, then make your edits to .imwheelrc, as desired, and run imwheel -b "4 5" again for more testing. Be sure to fully close and re-open Chrome each time you restart imwheel too, to ensure its new settings take effect. This must be done by right-clicking the little Chrome icon in the top-right of your desktop pane and going to "Exit".



Also keep in mind that if you are using a cheap mouse, your scroll wheel decoder may be lousy and miss encoder counts when moving the wheel fast. Therefore, in such a case, move the wheel at a reduced speed when testing the effect of imwheel, so that your mouse doesn't miss encoder counts on the scroll wheel, making you think imwheel isn't working right when it's really just your cheap hardware's problem.



Add imwheel -b "4 5" to Ubuntu's "Startup Applications" to get it to run every time the computer starts.



As Steven C. Howell says here:




Note that using the option -b "4 5" restricts imwheel to only affect the scroll wheel, discussed here.




Another answer by "tvn" here: https://askubuntu.com/a/304653/327339.

More answers here: Increase mouse wheel scroll speed.



Reference notes:



I am not the original author of the answers linked-to above, rather, user "tvn" and others are, although tvn's answer is lacking in that it replaces mouse scroll wheel movements with multiple arrow-key Arrow Up and Arrow Down key presses, which means you have to click in a window for it to take effect, and some things like the browser-based Jupyter Notebook Python programming environment scroll horribly like this! Therefore, Steven C. Howell gave an improved answer which keeps the scroll wheel mapping to the scroll wheel, instead of to keyboard up and down keys, but his answer is lacking in that it applies this new scroll wheel scaling to everything on your computer, so I just modified this answer 27 Aug. 2018 to reflect Steven Howell's answer, but with the addition of adding ".*-chrome*" to the top of the ~/.imwheelrc file so that these new scroll setting apply only to your Chrome browser, which is really what I want. Note also, I have made several significant and important edits and contributions to tvn's answer linked to above, but now I think this answer here is much better, and it's deviated too much from tvn's answer to even attempt to edit his answer further.



Tested in Ubuntu 14.04 LTS.



Update 3 Mar. 2019: tested in Ubuntu 18.04 LTS as well, and it seems the effect takes place immediately in Chrome now each time you run killall imwheel and then imwheel -b "4 5" to test new settings.






share|improve this answer


























  • You need a MEDAL. Thank you.

    – N3dst4
    yesterday
















5














Here is a solution which works perfectly:



sudo apt update
sudo apt install imwheel
gedit ~/.imwheelrc


Copy and paste the following into the newly-created .imwheelrc file (that you just made in your home directory via the gedit command above):



".*-chrome*"
None, Up, Button4, 3
None, Down, Button5, 3
Control_L, Up, Control_L|Button4
Control_L, Down, Control_L|Button5
Shift_L, Up, Shift_L|Button4
Shift_L, Down, Shift_L|Button5


3 is the "scroll speed multiplier." Use a larger number for faster scrolling, or a smaller number for slower scrolling. The ".*-chrome*" part says to apply these scroll wheel speed increase changes ONLY to chrome.



Run imwheel -b "4 5" to test your settings. When done testing, run killall imwheel to kill it, then make your edits to .imwheelrc, as desired, and run imwheel -b "4 5" again for more testing. Be sure to fully close and re-open Chrome each time you restart imwheel too, to ensure its new settings take effect. This must be done by right-clicking the little Chrome icon in the top-right of your desktop pane and going to "Exit".



Also keep in mind that if you are using a cheap mouse, your scroll wheel decoder may be lousy and miss encoder counts when moving the wheel fast. Therefore, in such a case, move the wheel at a reduced speed when testing the effect of imwheel, so that your mouse doesn't miss encoder counts on the scroll wheel, making you think imwheel isn't working right when it's really just your cheap hardware's problem.



Add imwheel -b "4 5" to Ubuntu's "Startup Applications" to get it to run every time the computer starts.



As Steven C. Howell says here:




Note that using the option -b "4 5" restricts imwheel to only affect the scroll wheel, discussed here.




Another answer by "tvn" here: https://askubuntu.com/a/304653/327339.

More answers here: Increase mouse wheel scroll speed.



Reference notes:



I am not the original author of the answers linked-to above, rather, user "tvn" and others are, although tvn's answer is lacking in that it replaces mouse scroll wheel movements with multiple arrow-key Arrow Up and Arrow Down key presses, which means you have to click in a window for it to take effect, and some things like the browser-based Jupyter Notebook Python programming environment scroll horribly like this! Therefore, Steven C. Howell gave an improved answer which keeps the scroll wheel mapping to the scroll wheel, instead of to keyboard up and down keys, but his answer is lacking in that it applies this new scroll wheel scaling to everything on your computer, so I just modified this answer 27 Aug. 2018 to reflect Steven Howell's answer, but with the addition of adding ".*-chrome*" to the top of the ~/.imwheelrc file so that these new scroll setting apply only to your Chrome browser, which is really what I want. Note also, I have made several significant and important edits and contributions to tvn's answer linked to above, but now I think this answer here is much better, and it's deviated too much from tvn's answer to even attempt to edit his answer further.



Tested in Ubuntu 14.04 LTS.



Update 3 Mar. 2019: tested in Ubuntu 18.04 LTS as well, and it seems the effect takes place immediately in Chrome now each time you run killall imwheel and then imwheel -b "4 5" to test new settings.






share|improve this answer


























  • You need a MEDAL. Thank you.

    – N3dst4
    yesterday














5












5








5







Here is a solution which works perfectly:



sudo apt update
sudo apt install imwheel
gedit ~/.imwheelrc


Copy and paste the following into the newly-created .imwheelrc file (that you just made in your home directory via the gedit command above):



".*-chrome*"
None, Up, Button4, 3
None, Down, Button5, 3
Control_L, Up, Control_L|Button4
Control_L, Down, Control_L|Button5
Shift_L, Up, Shift_L|Button4
Shift_L, Down, Shift_L|Button5


3 is the "scroll speed multiplier." Use a larger number for faster scrolling, or a smaller number for slower scrolling. The ".*-chrome*" part says to apply these scroll wheel speed increase changes ONLY to chrome.



Run imwheel -b "4 5" to test your settings. When done testing, run killall imwheel to kill it, then make your edits to .imwheelrc, as desired, and run imwheel -b "4 5" again for more testing. Be sure to fully close and re-open Chrome each time you restart imwheel too, to ensure its new settings take effect. This must be done by right-clicking the little Chrome icon in the top-right of your desktop pane and going to "Exit".



Also keep in mind that if you are using a cheap mouse, your scroll wheel decoder may be lousy and miss encoder counts when moving the wheel fast. Therefore, in such a case, move the wheel at a reduced speed when testing the effect of imwheel, so that your mouse doesn't miss encoder counts on the scroll wheel, making you think imwheel isn't working right when it's really just your cheap hardware's problem.



Add imwheel -b "4 5" to Ubuntu's "Startup Applications" to get it to run every time the computer starts.



As Steven C. Howell says here:




Note that using the option -b "4 5" restricts imwheel to only affect the scroll wheel, discussed here.




Another answer by "tvn" here: https://askubuntu.com/a/304653/327339.

More answers here: Increase mouse wheel scroll speed.



Reference notes:



I am not the original author of the answers linked-to above, rather, user "tvn" and others are, although tvn's answer is lacking in that it replaces mouse scroll wheel movements with multiple arrow-key Arrow Up and Arrow Down key presses, which means you have to click in a window for it to take effect, and some things like the browser-based Jupyter Notebook Python programming environment scroll horribly like this! Therefore, Steven C. Howell gave an improved answer which keeps the scroll wheel mapping to the scroll wheel, instead of to keyboard up and down keys, but his answer is lacking in that it applies this new scroll wheel scaling to everything on your computer, so I just modified this answer 27 Aug. 2018 to reflect Steven Howell's answer, but with the addition of adding ".*-chrome*" to the top of the ~/.imwheelrc file so that these new scroll setting apply only to your Chrome browser, which is really what I want. Note also, I have made several significant and important edits and contributions to tvn's answer linked to above, but now I think this answer here is much better, and it's deviated too much from tvn's answer to even attempt to edit his answer further.



Tested in Ubuntu 14.04 LTS.



Update 3 Mar. 2019: tested in Ubuntu 18.04 LTS as well, and it seems the effect takes place immediately in Chrome now each time you run killall imwheel and then imwheel -b "4 5" to test new settings.






share|improve this answer















Here is a solution which works perfectly:



sudo apt update
sudo apt install imwheel
gedit ~/.imwheelrc


Copy and paste the following into the newly-created .imwheelrc file (that you just made in your home directory via the gedit command above):



".*-chrome*"
None, Up, Button4, 3
None, Down, Button5, 3
Control_L, Up, Control_L|Button4
Control_L, Down, Control_L|Button5
Shift_L, Up, Shift_L|Button4
Shift_L, Down, Shift_L|Button5


3 is the "scroll speed multiplier." Use a larger number for faster scrolling, or a smaller number for slower scrolling. The ".*-chrome*" part says to apply these scroll wheel speed increase changes ONLY to chrome.



Run imwheel -b "4 5" to test your settings. When done testing, run killall imwheel to kill it, then make your edits to .imwheelrc, as desired, and run imwheel -b "4 5" again for more testing. Be sure to fully close and re-open Chrome each time you restart imwheel too, to ensure its new settings take effect. This must be done by right-clicking the little Chrome icon in the top-right of your desktop pane and going to "Exit".



Also keep in mind that if you are using a cheap mouse, your scroll wheel decoder may be lousy and miss encoder counts when moving the wheel fast. Therefore, in such a case, move the wheel at a reduced speed when testing the effect of imwheel, so that your mouse doesn't miss encoder counts on the scroll wheel, making you think imwheel isn't working right when it's really just your cheap hardware's problem.



Add imwheel -b "4 5" to Ubuntu's "Startup Applications" to get it to run every time the computer starts.



As Steven C. Howell says here:




Note that using the option -b "4 5" restricts imwheel to only affect the scroll wheel, discussed here.




Another answer by "tvn" here: https://askubuntu.com/a/304653/327339.

More answers here: Increase mouse wheel scroll speed.



Reference notes:



I am not the original author of the answers linked-to above, rather, user "tvn" and others are, although tvn's answer is lacking in that it replaces mouse scroll wheel movements with multiple arrow-key Arrow Up and Arrow Down key presses, which means you have to click in a window for it to take effect, and some things like the browser-based Jupyter Notebook Python programming environment scroll horribly like this! Therefore, Steven C. Howell gave an improved answer which keeps the scroll wheel mapping to the scroll wheel, instead of to keyboard up and down keys, but his answer is lacking in that it applies this new scroll wheel scaling to everything on your computer, so I just modified this answer 27 Aug. 2018 to reflect Steven Howell's answer, but with the addition of adding ".*-chrome*" to the top of the ~/.imwheelrc file so that these new scroll setting apply only to your Chrome browser, which is really what I want. Note also, I have made several significant and important edits and contributions to tvn's answer linked to above, but now I think this answer here is much better, and it's deviated too much from tvn's answer to even attempt to edit his answer further.



Tested in Ubuntu 14.04 LTS.



Update 3 Mar. 2019: tested in Ubuntu 18.04 LTS as well, and it seems the effect takes place immediately in Chrome now each time you run killall imwheel and then imwheel -b "4 5" to test new settings.







share|improve this answer














share|improve this answer



share|improve this answer








edited 8 hours ago

























answered Jan 3 '18 at 1:34









Gabriel StaplesGabriel Staples

7811924




7811924













  • You need a MEDAL. Thank you.

    – N3dst4
    yesterday



















  • You need a MEDAL. Thank you.

    – N3dst4
    yesterday

















You need a MEDAL. Thank you.

– N3dst4
yesterday





You need a MEDAL. Thank you.

– N3dst4
yesterday













3














unfortunately this function is deprecated and removed from Chrome and Chromium. It is not working anymore with the latest versions of Chrome.



https://code.google.com/p/chromium/issues/detail?id=154776



But you can use this quite cool plugin to speed up your scroll speed in Chrome on Linux.



https://chrome.google.com/webstore/detail/chromium-wheel-smooth-scr/khpcanbeojalbkpgpmjpdkjnkfcgfkhb






share|improve this answer


























  • The performance of the plugin is not so good. The speed is erratic.

    – Kin
    Oct 6 '16 at 7:28
















3














unfortunately this function is deprecated and removed from Chrome and Chromium. It is not working anymore with the latest versions of Chrome.



https://code.google.com/p/chromium/issues/detail?id=154776



But you can use this quite cool plugin to speed up your scroll speed in Chrome on Linux.



https://chrome.google.com/webstore/detail/chromium-wheel-smooth-scr/khpcanbeojalbkpgpmjpdkjnkfcgfkhb






share|improve this answer


























  • The performance of the plugin is not so good. The speed is erratic.

    – Kin
    Oct 6 '16 at 7:28














3












3








3







unfortunately this function is deprecated and removed from Chrome and Chromium. It is not working anymore with the latest versions of Chrome.



https://code.google.com/p/chromium/issues/detail?id=154776



But you can use this quite cool plugin to speed up your scroll speed in Chrome on Linux.



https://chrome.google.com/webstore/detail/chromium-wheel-smooth-scr/khpcanbeojalbkpgpmjpdkjnkfcgfkhb






share|improve this answer















unfortunately this function is deprecated and removed from Chrome and Chromium. It is not working anymore with the latest versions of Chrome.



https://code.google.com/p/chromium/issues/detail?id=154776



But you can use this quite cool plugin to speed up your scroll speed in Chrome on Linux.



https://chrome.google.com/webstore/detail/chromium-wheel-smooth-scr/khpcanbeojalbkpgpmjpdkjnkfcgfkhb







share|improve this answer














share|improve this answer



share|improve this answer








edited Feb 6 '14 at 17:09

























answered Apr 19 '13 at 20:20









ZoltanZoltan

32827




32827













  • The performance of the plugin is not so good. The speed is erratic.

    – Kin
    Oct 6 '16 at 7:28



















  • The performance of the plugin is not so good. The speed is erratic.

    – Kin
    Oct 6 '16 at 7:28

















The performance of the plugin is not so good. The speed is erratic.

– Kin
Oct 6 '16 at 7:28





The performance of the plugin is not so good. The speed is erratic.

– Kin
Oct 6 '16 at 7:28











0














Try this alternative https://chrome.google.com/webstore/detail/gestures-for-google-chrom/jpkfjicglakibpenojifdiepckckakgk?utm_source=chrome-app-launcher-info-dialog. It has better performance than Chromium Wheel Smooth Scroller






share|improve this answer
























  • This has been fixed in chrome for a while now

    – Get Off My Lawn
    Dec 4 '16 at 18:38











  • @get-off-my-lawn could you provide better alternative?

    – ipeacocks
    Dec 4 '16 at 20:17
















0














Try this alternative https://chrome.google.com/webstore/detail/gestures-for-google-chrom/jpkfjicglakibpenojifdiepckckakgk?utm_source=chrome-app-launcher-info-dialog. It has better performance than Chromium Wheel Smooth Scroller






share|improve this answer
























  • This has been fixed in chrome for a while now

    – Get Off My Lawn
    Dec 4 '16 at 18:38











  • @get-off-my-lawn could you provide better alternative?

    – ipeacocks
    Dec 4 '16 at 20:17














0












0








0







Try this alternative https://chrome.google.com/webstore/detail/gestures-for-google-chrom/jpkfjicglakibpenojifdiepckckakgk?utm_source=chrome-app-launcher-info-dialog. It has better performance than Chromium Wheel Smooth Scroller






share|improve this answer













Try this alternative https://chrome.google.com/webstore/detail/gestures-for-google-chrom/jpkfjicglakibpenojifdiepckckakgk?utm_source=chrome-app-launcher-info-dialog. It has better performance than Chromium Wheel Smooth Scroller







share|improve this answer












share|improve this answer



share|improve this answer










answered Dec 4 '16 at 18:37









ipeacocksipeacocks

3451316




3451316













  • This has been fixed in chrome for a while now

    – Get Off My Lawn
    Dec 4 '16 at 18:38











  • @get-off-my-lawn could you provide better alternative?

    – ipeacocks
    Dec 4 '16 at 20:17



















  • This has been fixed in chrome for a while now

    – Get Off My Lawn
    Dec 4 '16 at 18:38











  • @get-off-my-lawn could you provide better alternative?

    – ipeacocks
    Dec 4 '16 at 20:17

















This has been fixed in chrome for a while now

– Get Off My Lawn
Dec 4 '16 at 18:38





This has been fixed in chrome for a while now

– Get Off My Lawn
Dec 4 '16 at 18:38













@get-off-my-lawn could you provide better alternative?

– ipeacocks
Dec 4 '16 at 20:17





@get-off-my-lawn could you provide better alternative?

– ipeacocks
Dec 4 '16 at 20:17


















draft saved

draft discarded




















































Thanks for contributing an answer to Ask Ubuntu!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f254367%2fpermanently-fix-chrome-scroll-speed%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

香粉寮

GameSpot