Remove Chat kirka.io

Remove chat

  1. // ==UserScript==
  2. // @name Remove Chat kirka.io
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Remove chat
  6. // @author Vicky_arut
  7. // @match https://kirka.io/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. function removeElements() {
  15. const chatElement = document.getElementById('chat');
  16. if (chatElement) {
  17. chatElement.remove();
  18. }
  19. }
  20.  
  21. const observer = new MutationObserver(removeElements);
  22. observer.observe(document.body, { childList: true, subtree: true });
  23.  
  24. removeElements();
  25. })();

QingJ © 2025

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