Remove Ads - mtgazone.com

2021/7/17下午6:54:07

// ==UserScript==
// @name        Remove Ads - mtgazone.com
// @namespace   Violentmonkey Scripts
// @match       https://mtgazone.com/*
// @grant       none
// @version     1.1
// @author      -
// @description 2021/7/17下午6:54:07
// ==/UserScript==
// 


(function(){
  'use strict';
  console.log('hello world');
  
  setInterval(startWork,1000);
  
})();


  function startWork(){
    console.log('startWork');
    
    let footer = document.getElementById("footer");
    
    if(footer){
      footer.remove();
    }
    let ads = document.getElementsByClassName("adthrive-ad");
    
    for(let i=0;i<ads.length;i++){
      let ad = ads[i];
      ad.remove();
    }
  }

QingJ © 2025

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