clearAds

try to take over the world!

  1. // ==UserScript==
  2. // @name clearAds
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author EmRaH
  7. // @match http://*/*
  8.  
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12.  
  13. setInterval(clearAds, 3000);
  14. //clearAds();
  15. function clearAds(){
  16. if(window.location.host!=="moonbit.co.in"){
  17. $("iframe").each(function(){
  18. var link =$(this).attr("src");
  19. if(link===undefined){
  20. $(this).remove();
  21. }else{
  22. if((link.indexOf("https://www.google.com/recaptcha/api2/")==-1))
  23. {
  24. if(link.indexOf("//api.solvemedia.com/papi")==-1)
  25. $(this).remove();
  26. }
  27. }
  28. });
  29. }
  30. }

QingJ © 2025

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