-
-
Save euedeep/a6274792f7e101c40b970c43c767904b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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