您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
干掉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) } })();