阻止广告在网页上展示的某些代码?

时间:2014-08-09 23:14:53

标签: javascript php html css html5

几年前,我有一些代码可以插入到页面中,它会阻止任何adsense广告或其他广告显示。我再也找不到我用过的东西,但有一点我确定我没有使用任何类型的广告拦截软件或扩展程序..

我写了这段代码:

    <?php // START SHOW_ADSENSE
    defined("SHOW_ADSENSE") || define("SHOW_ADSENSE", 1);
    if (SHOW_ADSENSE){
    ?>

    <script async src="http://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
    <ins class="adsbygoogle"
        style="display:inline-block;width:728px;height:90px"
        data-ad-client="ca-publisher-id"
        data-ad-slot="1234567890"></ins>
    <script>(adsbygoogle = window.adsbygoogle || []).push({});</script>

    <?php } // END SHOW_ADSENSE ?>

<?php defined("SHOW_ADSENSE") || define("SHOW_ADSENSE", 0); ?>

但是有更简单的方法可以同时屏蔽所有广告吗?

0 个答案:

没有答案