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

problem in Bilibili #210

Open Wu-Zzz opened 3 years ago

Wu-Zzz commented 3 years ago

If turn on the “Enable keyboard support“ switch, pressing Space Bar to pause videos in Bilibili.com will cause web-page scroll down, recurrence rate 100%. The normal situation should be to pause the video without scrolling the page. Finally, the extension is very NICE, thanks!

chenzongshun commented 2 years ago

油猴脚本亲测可用

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

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