Created
August 9, 2014 18:56
-
-
Save natchiketa/9378e0f812823e8d6fc5 to your computer and use it in GitHub Desktop.
Bookmarklet to remove elements
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
| javascript:(function(){ | |
| [].prototype | |
| .forEach | |
| .call(document.querySelectorAll('[id*="taboola"]'), function(el) { | |
| el.parentElement.removeChild(el); | |
| } | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment