- dadagui

dadagui

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey to install this script.

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name - dadagui
// @namespace tytyty
// @version 1.0
// @description dadagui
// @author tuyun
// @match http://www.dadagui.la/*
// @run-at document-idle
// ==/UserScript==
 
(function() {
    'use strict';
 
    // 选择要移除的元素
    // 获取所有页面元素
const elements = document.querySelectorAll('*');

    // 移除元素
    function removeElements() {
        elements.forEach(element => {
  const zIndex = window.getComputedStyle(element).zIndex;
  if (zIndex === '100' || zIndex==='10') {
    element.remove(); // 设置 display 为 none,隐藏元素
  }
});
    }
 
     // 在页面加载完成后执行

       
         // 在页面加载完成后执行
        removeElements();
   
 


 

   

})();