adsblock-detector

1.0.8 • Public • Published

Ads Block Detector works for your website. It is very easy to step into your website. Ad Block Detector work for all browsers.

Note:

Ads Block Detector only work for Google Adsense.

Live demo

You check the ads block detector live working demo on my website.

How to use Ads Block Detector?

You can use an ads block detector with NPM and CDN.

NPM

        import adsblock from './node_modules/adsblock-detector/dist/build.js';
            or 
        import adsblock from 'adsblock-detector';

        const ads = new adsblock()

        console.log(ads.total())
        console.log(ads.check() )

CDN

You can copy lalest version of ads block detector CDN link: https://unpkg.com/adsblock-detector

Example 1

    <script type="module" src="https://unpkg.com/adsblock-detector@1.0.4/dist/build.js">
    </script>

    <script type="module" >
        
        import adsDetector from "./node_modules/adsblock-detector/dist/build.js"

        const ads = new adsDetector()

        console.log(ads.total())
        console.log(ads.check())
    </script>

Example 2

<script type="module">
 
     import adsDetector from "https://unpkg.com/adsblock-detector@1.0.3/dist/build.js"
        
     
        let adsBlockDetector = new adsDetector()

         console.log(adsBlockDetector.total())
         console.log(adsBlockDetector.check())

</script>

Inbuilt functions

In the ads block detector npm package, two inbuilt functions are available.

  1. total()
  2. check()

total()

Help provide the total number of ads shown on your website.

 
    const ads = new adsDetector()
    
    let totalAds = ads.total()

check()

The check function provides adblocker is active or not in the client or user web browser.

 
    const ads = new adsDetector()
    
   let adblocker = ads.check()

Package Sidebar

Install

npm i adsblock-detector

Weekly Downloads

4

Version

1.0.8

License

MIT

Unpacked Size

6.47 kB

Total Files

5

Last publish

Collaborators

  • officialrajdeepsingh