Ad blockers

On this page, we discuss the effect that ad blockers have on LiftIgniter content, as well as on your ability to monetize the content.

1. Ad blocker basics: EasyList and EasyPrivacy

There are two main lists that ad blocking tools reference when deciding what domains to block.

  • EasyList is a list of domains that are used by websites to insert advertisements or other content. This includes most ad networks. LiftIgniter's domains are not on this list, and should not be, as we do not serve ads.
  • EasyPrivacy is a list of domains used for third-party analytics or measurement, even if not involved in ad serving. LiftIgniter's domains (petametrics.com and subdomains) are listed here, as are those of major analytics services such as Google Analytics and Chartbeat.

Most ad blockers (including AdBlock and AdBlock Plus) default to using EasyList as their block list, although privacy-conscious users can choose to use EasyPrivacy instead.

However, uBlock is an ad-blocking tool that uses EasyPrivacy by default, so users using uBlock do not send data to LiftIgniter or receive LiftIgniter recommendations, unless they have switched to EasyList or otherwise unblocked LiftIgniter. Most of these users won't be visible to Google Analytics or third-party analytics tools, so the only way you'll know about them will be through direct logging of user activity you do on your website.

2. Effect on your traffic

The effect on your traffic will depend on your geographic location and user profile. In the United States, adblockers are used by 16 percent of users, and about 20% of users of adblockers use uBlock. Therefore, the fraction of traffic that is invisible to LiftIgniter (and cannot benefit from LiftIgniter recommendations) due to adblockers is about 3%. Note that the ratio could be higher or lower depending on the audience segment you are catering to.

Since these users are invisible to Google Analytics as well, they probably won't show up in your other calculations. So you won't need to subtract 3% from your expected traffic numbers if you're using Google Analytics for baseline calculations.

3. Effect on incremental revenue calculations

Ad blockers should not affect the calculation of proportional improvements you calculate based off of LiftIgniter. For instance, if LiftIgniter increases your pageviews by 10%, then it should increase your non-ad-blocker pageviews by 10% as well.

When calculating actual revenue, you will need to discount the incremental pageviews added by LiftIgniter to account for non-monetizable pages. If, for instance, 15% of your users use ad blockers, and LiftIgniter adds 10 million pageviews to your site a month, you effectively get 8.5 million extra monetizable pageviews a month. This is the same as the discounting you need to do in general for your other (non-LiftIgniter-powered) pageviews as well. Note that if you have already incorporated ad blocking when calculating your blended CPM, then you do not need to make the adjustment again here.

4. Using LiftIgniter despite ad blockers

There are two ways you can use LiftIgniter effectively for users who use uBlock or a similar ad blocker that blocks all analytics tools.

  • Server side integration for activity and model endpoints
  • DNS routes: You register subdomains under your own domain that you point to LiftIgniter's domains. Note: Additional steps are needed for HTTPS website

For the DNS routes, you will need to register two subdomains under your domain, corresponding respectively to:

  • cdn.petametrics.com
  • query.petametrics.com

For instance, suppose your domain is called dummydomain.com. Then you would create two subdomains under it:

  • cdn.dummydomain.com corresponding to cdn.petametrics.com
  • query.dummydomain.com corresponding to query.petametrics.com

There are two ways you can set this up:

  • Backend rerouting: Have servers on your side that receive the requests, and then reroute them to our servers. For cdn.petametrics.com, you do not need to reroute on every request; you could instead cache the results on your own to serve them faster. For query.petametrics.com, you should reroute on every request.
  • Explicit CNAME redirection (not available if you wish to use HTTPS): Here, your DNS record has a CNAME redirection to our DNS record. This requires an extra step from us: we need to whitelist your domain in our CDN so that it can serve traffic. Due to configuration limitations we may not be able to whitelist all domains.

For HTTP sites, we recommend using backend rerouting for cdn.petametrics.com, and CNAME redirection for query.petametrics.com. For HTTPS sites, we recommend using backend rerouting for both cdn.petametrics.com and query.petametrics.com.

You will then update your Javascript snippet as follows. Note both the change from cdn.petametrics.com to cdn.dummydomain.com and the inclusion of new server domains in your custom configuration settings.

<script type="text/javascript">
// Ensures that our client code is updated.
(function(w,d,s,p,v,e,r) {w['$igniter_var']=v;w[v]=w[v]||function(){(w[v].q=w[v].q||[]).push(
arguments)};w[v].l=1*new Date();e=d.createElement(s),r=d.getElementsByTagName(s)[0];e.async=1;
e.src=p+'?ts='+(+new Date()/3600000|0);
r.parentNode.insertBefore(e,r)})(window,document,'script','//cdn.dummydomain.com/{JAVASCRIPT_KEY}.js','$p');
// Don't forget to REPLACE JAVASCRIPT_KEY for cdn url.

var customConfig = {
  config : {
    sdk : {
      queryServer: "//query.dummydomain.com"
    },
    activity : {
      activityServer: "//query.dummydomain.com"
    },
    inventory : {
      inventoryServer: "//query.dummydomain.com"
    }
  }
}
$p("init", {JAVASCRIPT_KEY}, customConfig); // REPLACE JAVASCRIPT_KEY
$p("send", "pageview");
</script>

Keep in mind that users can report the domains that you are using (cdn.dummydomain.com, query.dummydomain.com) and have them added to EasyPrivacy. The bigger the audience for your website, the more likely it is that somebody will report these domains in a short period of time. Typical reporting times can vary from a week to a few months.

Please be in touch with Support to discuss more.