干掉哪些烦人的东西
当前为
// ==UserScript==
// @name 哔哩哔哩直播去掉系统消息
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 干掉哪些烦人的东西
// @author You
// @match https://live.bilibili.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
setInterval(() => {
document.querySelectorAll(".chat-item.system-msg.border-box").forEach(element => {
element.remove()
});
}, 100);
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址