problem in Bilibili
Wu-Zzz opened this issue · 1 comments
Wu-Zzz commented
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
油猴脚本亲测可用
window.onload = function () {
document.onkeydown = function (event) {
// 按下空格时,禁用滚动屏幕事件
if (event.keyCode == 32) {
event.returnValue=false;
}
}
};