Skip to content

Instantly share code, notes, and snippets.

@karappo-kun
Created October 22, 2018 07:23
Show Gist options
  • Select an option

  • Save karappo-kun/45a78c5be4112ee1c51587ae47b7ab5c to your computer and use it in GitHub Desktop.

Select an option

Save karappo-kun/45a78c5be4112ee1c51587ae47b7ab5c to your computer and use it in GitHub Desktop.
ABP Detector bypass script
// Paste on the console on page load
let content = '';
const timer = setInterval(() => {
const body = document.querySelector('body');
if (body.hasAttribute('style')) {
body.innerHTML = content;
clearInterval(timer);
return;
}
content = body.innerHTML;
}, 500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment