1.0.0 • Published 4 years ago

use-adblock-detect v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

use-text-fit

npm version

A simple React hook to detect AdBlock


Install

npm install use-adblock-detect

Usage

import useAdblockDetect from 'use-adblock-detect';


function Page() {
    const detected = useAdblockDetect();

    return <main>
        {detected && <h1>Please disable adblock</h1>}
    </main>;
}

The hook returns a boolean that determines whether Adblock was detected on the user's browser.