屏蔽b站会员彩色弹幕

屏蔽了b站会员彩色弹幕

// ==UserScript==
// @name         屏蔽b站会员彩色弹幕
// @namespace    https://www.example.com
// @version      1.1
// @description  屏蔽了b站会员彩色弹幕
// @match        https://www.bilibili.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    var cssText = '.bili-dm-vip { display: none !important; }';
    var styleElm = document.createElement('style');
    styleElm.type = 'text/css';
    styleElm.textContent = cssText;
    document.head.appendChild(styleElm);
})();