屏蔽B站 W键 投币

B站网页版按键盘W键会弹出投币窗口,很容易误投币,因此使用脚本屏蔽W键盘事件。

// ==UserScript==
// @name         屏蔽B站 W键 投币
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  B站网页版按键盘W键会弹出投币窗口,很容易误投币,因此使用脚本屏蔽W键盘事件。
// @author       roy
// @match        https://www.bilibili.com/*
// @grant        none
// @license      MIT
// ==/UserScript==
(function() {
    'use strict';

    document.addEventListener('keydown', function(e) {
        if (e.key === 'w' || e.key === 'W') {
            e.stopImmediatePropagation();
            e.preventDefault();
        }
    });

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址