NT动漫去广告

www.ntyou.cc去广告

目前為 2022-05-24 提交的版本,檢視 最新版本

// ==UserScript==
// @name              NT动漫去广告
// @version           20
// @author            KA
 
// @description       www.ntyou.cc去广告
// @license MIT
 
// @include *://*.ntyou.cc/*
// @namespace https://greasyfork.org/users/917798
// ==/UserScript==
 
(function(){
    var times=[100,200,300,400,500,600,700,800,900,1000];
    for(var i in times){
        setInterval(function(){
            var names=["HMimageleft","HMimageright","HMcoupletDivright","HMcoupletDivleft","HMRichBox"];
            for(var i in names){
             var child=document.getElementById(names[i]);
             if(child !=null){
                 document.body.removeChild(child);
                 }
            }
        },times[i]);
    }
            
})()