2.1.0 • Published 7 months ago

adblock-detector v2.1.0

Weekly downloads
11
License
MIT
Repository
github
Last release
7 months ago

AdblockDetector

Micro library for detecting adblock presense in user browser.

Detection on server side is not supported. Please use library only on client side.

npm version package size minified npm.io

total downloads total downloads per year total downloads per week total downloads per month

Installation

Via NPM

npm i adblock-detector

Via Yarn

yarn add adblock-detector

Usage

import AdblockDetector from 'adblock-detector';

const adbDetector = new AdblockDetector()

const userHasAdblock = adbDetector.detect(); // true if user has it false if not

That's it!