Remove Chat kirka.io

Remove chat

// ==UserScript==
// @name         Remove Chat kirka.io
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Remove chat
// @author       Vicky_arut
// @match        https://kirka.io/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function removeElements() {
        const chatElement = document.getElementById('chat');
        if (chatElement) {
            chatElement.remove();
        }
    }

    const observer = new MutationObserver(removeElements);
    observer.observe(document.body, { childList: true, subtree: true });

    removeElements();
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址