container words visible

telefonda chatda konuşurken gelip rahatsız eden çizim sırası yerini siler

当前为 2025-03-21 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name container words visible
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description telefonda chatda konuşurken gelip rahatsız eden çizim sırası yerini siler
  6. // @author Ryzex
  7. // @match *://gartic.io/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. const style = document.createElement('style');
  15. style.innerHTML = `
  16. .containerWords {
  17. display: none !important;
  18. visibility: hidden !important;
  19. opacity: 0 !important;
  20. pointer-events: none !important;
  21. position: absolute !important;
  22. top: -9999px !important;
  23. left: -9999px !important;
  24. }
  25. `;
  26. document.head.appendChild(style);
  27.  
  28. })();