smoothscroll icon indicating copy to clipboard operation
smoothscroll copied to clipboard

Excluded pages exclude bilibilibili. Com does not take effect, pressing the space will trigger the scrolling screen

Open miniKoala opened this issue 2 years ago • 2 comments

title

miniKoala avatar Jul 02 '22 01:07 miniKoala

image

miniKoala avatar Jul 02 '22 01:07 miniKoala

油猴脚本亲测可用

window.onload = function () {
    document.onkeydown = function (event) {

        // 按下空格时,禁用滚动屏幕事件
        if (event.keyCode == 32) {
            event.returnValue=false;
        }
    }
};

chenzongshun avatar Jul 02 '22 01:07 chenzongshun