Skip to content

Instantly share code, notes, and snippets.

@riledhel
Last active September 22, 2015 14:36
Show Gist options
  • Save riledhel/5d3794faa5645b936d8d to your computer and use it in GitHub Desktop.
Save riledhel/5d3794faa5645b936d8d to your computer and use it in GitHub Desktop.
JavaScript bookmarklet to remove lanacion.com.ar ads
javascript:(function(){
var elem = {};
var d = document;
var modals = [].slice.call(d.getElementsByClassName("lnmodal"));
while(modals.length){
elem = modals.pop();
elem.parentNode.removeChild(elem);
};
void(0);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment