×

如何屏蔽免费虚拟机主机插入谷歌广告

hqy hqy 发表于2024-09-11 15:56:19 浏览242 评论0

抢沙发发表评论


一些恶心的免费虚拟机主机,会插入谷歌广告,造成你页面打开,都会出现显示的问题,非常难受。

image.png

只能每个页面插入这个代码,屏蔽谷歌广告。。。。。。




<script type="text/javascript">


function blockGoogleAds() {


  const adsByClassName = document.querySelectorAll('.adsbygoogle, .video-ads');

  adsByClassName.forEach(ad => ad.remove());

 


  const adsByAttribute = document.querySelectorAll('[data-google-query-id]');

  adsByAttribute.forEach(ad => ad.remove());

 


  const googleSearchSuggestion = document.querySelector('.gsc-search-button');

  if (googleSearchSuggestion) {

    googleSearchSuggestion.parentNode.removeChild(googleSearchSuggestion);

  }

}

 


window.onload = function() {

  blockGoogleAds();

};

</script>


本文链接:https://hqyman.cn/post/7949.html 非本站原创文章欢迎转载,原创文章需保留本站地址!

分享到: