Created
October 22, 2018 07:23
-
-
Save karappo-kun/45a78c5be4112ee1c51587ae47b7ab5c to your computer and use it in GitHub Desktop.
ABP Detector bypass script
This file contains hidden or 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
| // 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