NT动漫去广告

www.ntyou.cc去广告

当前为 2022-05-24 提交的版本,查看 最新版本

// ==UserScript==
// @name              NT动漫去广告
// @version           26
// @author            KA
 
// @description       www.ntyou.cc去广告
// @license MIT
 
// @include *://*.ntyou.cc/*
// @namespace https://greasyfork.org/users/917798
// ==/UserScript==
function clear(){
    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);
                 }
            }
}
document.onload=function(){
        setInterval(clear,300);
            
};