gblazex / smoothscroll

An extension for Google Chrome (150,000+ users)
https://chrome.google.com/webstore/detail/smoothscroll/nbokbjkabcmbfdlbddjidfmibcpneigj
Other
475 stars 98 forks source link

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

Closed miniKoala closed 1 year ago

miniKoala commented 2 years ago

title

miniKoala commented 2 years ago

image

chenzongshun commented 2 years ago

油猴脚本亲测可用

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

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