gblazex/smoothscroll

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

miniKoala opened this issue · 2 comments

title

油猴脚本亲测可用

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

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