adsblock-detector
v1.0.8
Published
the Ad Block Detector is help to detect ads block active or not in user browser
Downloads
18
Maintainers
Keywords
Readme
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/[email protected]/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/[email protected]/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.
- total()
- 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()