禁用B站的点赞投币收藏快捷键

禁用B站网页端的点赞、投币和收藏快捷键

// ==UserScript==
// @name         禁用B站的点赞投币收藏快捷键
// @namespace    http://tampermonkey.net/
// @version      0.1.1
// @description  禁用B站网页端的点赞、投币和收藏快捷键
// @author       Dorei Hime
// @match        *://www.bilibili.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    // 禁用Q键(点赞)、W键(投币)和E键(收藏)
    document.addEventListener('keydown', function(e) {
        if (e.key === 'q' || e.key === 'w' || e.key === 'e') {
            e.stopPropagation();
        }
    }, true);
})();