├── .gitignore ├── README.md ├── baits └── pagead2.googlesyndication.com ├── dist ├── bundle.cjs.js ├── bundle.esm.js └── bundle.umd.js ├── docs ├── bundle.umd.js └── index.html ├── package.json ├── rollup.config.js └── src ├── detectAnyAdblocker.js ├── detectBraveShields.js ├── detectDomAdblocker.js ├── detectOperaAdblocker.js ├── helpers.js └── main.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | npm-debug.log* 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/just-detect-adblock/HEAD/README.md -------------------------------------------------------------------------------- /baits/pagead2.googlesyndication.com: -------------------------------------------------------------------------------- 1 | thistextshouldbethere 2 | -------------------------------------------------------------------------------- /dist/bundle.cjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/just-detect-adblock/HEAD/dist/bundle.cjs.js -------------------------------------------------------------------------------- /dist/bundle.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/just-detect-adblock/HEAD/dist/bundle.esm.js -------------------------------------------------------------------------------- /dist/bundle.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/just-detect-adblock/HEAD/dist/bundle.umd.js -------------------------------------------------------------------------------- /docs/bundle.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/just-detect-adblock/HEAD/docs/bundle.umd.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/just-detect-adblock/HEAD/docs/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/just-detect-adblock/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/just-detect-adblock/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/detectAnyAdblocker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/just-detect-adblock/HEAD/src/detectAnyAdblocker.js -------------------------------------------------------------------------------- /src/detectBraveShields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/just-detect-adblock/HEAD/src/detectBraveShields.js -------------------------------------------------------------------------------- /src/detectDomAdblocker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/just-detect-adblock/HEAD/src/detectDomAdblocker.js -------------------------------------------------------------------------------- /src/detectOperaAdblocker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/just-detect-adblock/HEAD/src/detectOperaAdblocker.js -------------------------------------------------------------------------------- /src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/just-detect-adblock/HEAD/src/helpers.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmcmurray/just-detect-adblock/HEAD/src/main.js --------------------------------------------------------------------------------