Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 528 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 528 Bytes

use-adblock-detect

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.