返回首頁 

Greasy Fork is available in English.

NoMouseWheelZoom

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


安装此脚本?
// ==UserScript==// @name         NoMouseWheelZoom// @namespace    NoNameSpace// @version      1.1// @description  No Mouse Wheel Zoom -> https://chrome.google.com/webstore/detail/disable-scroll-wheel-zoom/mdpfkohgfpidohkakdbpmnngaocglmhl// @author       You// @include      *// @match        *// ==/UserScript==document.addEventListener('wheel', function (e) {if (!e.ctrlKey)return;e.preventDefault();window.scrollBy(e.deltaX, e.deltaY);}, {passive: false});