Bilibili直播 屏蔽连击模块

屏蔽掉各式连击弹幕(如: 啊? x 99)的ui

// ==UserScript==
// @name         Bilibili直播 屏蔽连击模块
// @namespace    https://greasyfork.org/zh-CN/users/325815-monat151
// @version      1.0.3
// @description  屏蔽掉各式连击弹幕(如: 啊? x 99)的ui
// @author       monat151
// @license      MIT
// @match        https://live.bilibili.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function insertCSSRule(css){
        /* https://cloud.tencent.com/developer/article/2023111 */
        var head = document.head || document.getElementsByTagName('head')[0];
        var style = document.createElement('style');
        style.type = 'text/css';
        if (style.styleSheet){
            style.styleSheet.cssText = css;
        } else {
            style.appendChild(document.createTextNode(css));
        }

        head.appendChild(style);
    }

    setInterval(() => {
        insertCSSRule(`.combo { display: none !important; }`) // 不显示连击弹幕
        insertCSSRule(`.bilibili-combo-danmaku-container { display: none !important; }`) // 不显示连击弹幕
        insertCSSRule(`#combo-card { display: none !important; }`) // 不显示右侧聊天的连击卡片
    }, 1000)
})();