视频禁止空格键翻页

2021/5/30 上午12:20:04

目前为 2021-05-30 提交的版本。查看 最新版本

// ==UserScript==
// @name        视频禁止空格键翻页
// @namespace   
// @match        http*://www.bilibili.com/video/av*
// @match        http*://www.bilibili.com/video/BV*
// @match        http*://www.bilibili.com/watchlater/*
// @match        http*://www.bilibili.com/medialist/play/*
// @match        http*://www.bilibili.com/bangumi/play/ep*
// @match        http*://www.bilibili.com/bangumi/play/ss*
// @match        http*://bangumi.bilibili.com/anime/*/play*
// @match        http*://bangumi.bilibili.com/movie/*
// @match        http*://bangumi.bilibili.com/movie/
// @match        http*://www.iqiyi.com/v*
// @match        http*://v.qq.com/x/page/*
// @match        http*://v.qq.com/x/cover/*
// @match        http*://v.youku.com/v_show/id*
// @match        http*://
// @match        http*://
// @match        http*://
// @match        http*://
// @match        http*://
// @match        http*://
// @match        http*://
// @match        http*://
// @match        http*://
// @match        http*://
// @match        http*://
// @grant       none
// @version     1.0
// @author      wugeng
// @description 2021/5/30 上午12:20:04
// ==/UserScript==
 document.body.onkeydown = function(event) {
        var e = window.event || event;
        if (e.preventDefault) {
            e.preventDefault();
        } else {
            window.event.returnValue = false;
        }
    }