屏蔽B站直播表情弹幕

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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)
  }
})();