B站去除高赞弹幕标识

去掉B站弹幕的高赞标识

// ==UserScript==
// @name         B站去除高赞弹幕标识
// @namespace    _s7util__
// @version      0.5.11
// @description  去掉B站弹幕的高赞标识
// @author       shc0743
// @grant        none
// @license      GPL-3.0
// @run-at       document-start
// @match        http*://*.bilibili.com/*
// ==/UserScript==

(function () {
    const cssText = `
    .bpx-player-row-dm-wrap .bili-high-icon {
        display: none !important;
    }
    `;
   try {
       // 新方法
       const css = new CSSStyleSheet();
       css.replace(cssText);
       document.adoptedStyleSheets.push(css);
   } catch (error) {
       // fallback
       const css = document.createElement('style');
       css.innerHTML = cssText;
       try {
            (document.head || document.documentElement).append(css);
       } catch (error) {
           (document.head || document.documentElement).appendChild(css);
       }
   }
}())