Greasy Fork

B站直播屏蔽大号表情

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

当前为 2021-11-25 提交的版本,查看 最新版本

// ==UserScript==
// @name         B站直播屏蔽大号表情
// @namespace    https://gist.github.com/ch3cknull/a4ae3d6dcc4ab0b59cc7407ee5a5b737
// @version      0.1
// @description  干掉b站直播间新的啥比表情|cr你妈妈死啦!
// @include      /https?:\/\/live\.bilibili\.com\/[blanc\/]?[^?]*?\d+\??.*/
// @author       ch3cknull & 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)
  }
})();