Ads Block Detector works for your website. It is very easy to step into your website. Ad Block Detector work for all browsers.
Ads Block Detector only work for Google Adsense.
You can use an ads block detector with NPM and CDN.
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() )
You can copy lalest version of ads block detector CDN link: https://unpkg.com/adsblock-detector
<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>
<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>
In the ads block detector npm package, two inbuilt functions are available.
- total()
- check()
Help provide the total number of ads shown on your website.
const ads = new adsDetector()
let totalAds = ads.total()
The check function provides adblocker is active or not in the client or user web browser.
const ads = new adsDetector()
let adblocker = ads.check()