Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

problem in Bilibili #210

Open
Wu-Zzz opened this issue Aug 11, 2021 · 1 comment
Open

problem in Bilibili #210

Wu-Zzz opened this issue Aug 11, 2021 · 1 comment

Comments

@Wu-Zzz
Copy link

Wu-Zzz commented Aug 11, 2021

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
Copy link

油猴脚本亲测可用

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

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants