Skip to content

Instantly share code, notes, and snippets.

@euedeep
Forked from ravindu9701/adblocker.js
Created July 23, 2021 07:07
Show Gist options
  • Save euedeep/a6274792f7e101c40b970c43c767904b to your computer and use it in GitHub Desktop.
Save euedeep/a6274792f7e101c40b970c43c767904b to your computer and use it in GitHub Desktop.
async function checkForAdBlocker() {
let Blocked;
async function Request() {
try {
return fetch(
new Request(
"https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js", {
method: 'HEAD',
mode: 'no-cors'
}))
.then(function(response) {
// There is no AdBlocker
Blocked = false;
return Blocked;
}).catch(function(e) {
// Failed, Because of an AdBlocker
Blocked = true;
return Blocked;
});
} catch (error) {
console.log(error);
Blocked = true;
return Blocked;
}
}
return Blocked !== undefined ? Blocked : await Request();
}
const usingBlocker = await checkForAdBlocker();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment