Skip to content

Instantly share code, notes, and snippets.

@netsi1964
Created February 12, 2018 20:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save netsi1964/e76796cba4cb2069f7954e611e33044e to your computer and use it in GitHub Desktop.
Save netsi1964/e76796cba4cb2069f7954e611e33044e to your computer and use it in GitHub Desktop.
If a website dont like your add blocker - run this script in the console
Array.from(document.querySelectorAll('*')).map(ele => {
if (parseInt(getComputedStyle(ele).zIndex)>0) {
ele.style.display = 'none'
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment