Greasy Fork is available in English.

哔哩哔哩直播去掉系统消息

干掉哪些烦人的东西

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