装上就会自动屏蔽B站新出的大会员彩色渐变弹幕了
// ==UserScript== // @name 屏蔽大会员彩色弹幕(2024.7.19亲测可用) // @namespace http://tampermonkey.net/ // @version 0.6 // @description 装上就会自动屏蔽B站新出的大会员彩色渐变弹幕了 // @author You // @match https://www.bilibili.com/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @license MIT // ==/UserScript== (function () { 'use strict'; var StyleElement = document.createElement('style'); StyleElement.innerText = '.bili-danmaku-x-dm-vip{display:none !important; }'; document.body.appendChild(StyleElement); StyleElement.innerText += '.bili-dm-vip{display:none !important; }'; document.body.appendChild(StyleElement); })();