Greasy Fork is available in English.

NoMouseWheelZoom

No Mouse Wheel Zoom -> https://chrome.google.com/webstore/detail/disable-scroll-wheel-zoom/mdpfkohgfpidohkakdbpmnngaocglmhl

  1. // ==UserScript==
  2. // @name NoMouseWheelZoom
  3. // @namespace NoNameSpace
  4. // @version 1.1
  5. // @description No Mouse Wheel Zoom -> https://chrome.google.com/webstore/detail/disable-scroll-wheel-zoom/mdpfkohgfpidohkakdbpmnngaocglmhl
  6. // @author You
  7. // @include *
  8. // @match *
  9. // ==/UserScript==
  10.  
  11. document.addEventListener('wheel', function (e) {
  12. if (!e.ctrlKey)
  13. return;
  14. e.preventDefault();
  15. window.scrollBy(e.deltaX, e.deltaY);
  16. }, {passive: false});