// ==UserScript== // @name B站直播屏蔽大号表情 // @namespace https://gist.github.com/ch3cknull/a4ae3d6dcc4ab0b59cc7407ee5a5b737 // @version 0.2 // @description 干掉b站直播间新的啥比表情|cr你妈妈死啦! // @include /https?:\/\/live\.bilibili\.com\/[blanc\/]?[^?]*?\d+\??.*/ // @author ch3cknull // @modified by oldking139(仅为脚本引擎修改) // @match https://gist.github.com/ch3cknull/a4ae3d6dcc4ab0b59cc7407ee5a5b737 // @icon https://www.google.com/s2/favicons?sz=64&domain=github.com // @grant none // @license none // @downloadURL none // ==/UserScript== (function() { window.onload = () => { const style = ".bilibili-danmaku.mode-roll img {display:none;}" const element = document.createElement('style') element.innerText = style document.body.appendChild(element) } })();