Excluded pages exclude bilibilibili. Com does not take effect, pressing the space will trigger the scrolling screen
miniKoala opened this issue · 2 comments
miniKoala commented
title
miniKoala commented
chenzongshun commented
油猴脚本亲测可用
window.onload = function () {
document.onkeydown = function (event) {
// 按下空格时,禁用滚动屏幕事件
if (event.keyCode == 32) {
event.returnValue=false;
}
}
};