Greasy Fork

屏蔽B站直播表情弹幕

干掉b站直播间新的啥比表情|cr你妈妈死啦!

// ==UserScript==
// @name         屏蔽B站直播表情弹幕
// @namespace    https://gist.github.com/ch3cknull/a4ae3d6dcc4ab0b59cc7407ee5a5b737
// @version      0.4
// @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
// ==/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)
  }
})();