如何使用JavaScript检测对doubleclick adsense(DFP)代码的阻止?

时间:2018-09-12 12:08:29

标签: javascript adsense double-click google-dfp adblock

许多人使用Adblock之类的插件来避免在网站上显示横幅。如果可以检测到该插件,则可以轻松显示您喜欢的图像或文本。

我尝试使用此代码

<script>
  window.onload = function() {
    setTimeout(function() {
      if ( typeof(window.google_jobrunner) === "undefined" ) {
        alert("adblcoker is Enabled");
      } else {
        alert("adblacker is not founed")
      }
    }, 2000);  
  };
</script>

但是此代码仅在Google AdSense代码上检测。

如何检测“ DoubleClick Adsense(DFP)代码”?

0 个答案:

没有答案