Skip to content

Instantly share code, notes, and snippets.

@19WAS85
Created June 24, 2012 01:54
Show Gist options
  • Save 19WAS85/2980991 to your computer and use it in GitHub Desktop.
Save 19WAS85/2980991 to your computer and use it in GitHub Desktop.
Remove a maioria das incomodas propagandas nas transmissões de canais via stream na web.
var adsDivs = document.getElementsByTagName('div');
for (var i = 0; i < adsDivs.length; i++) {
var thisDiv = adsDivs[i];
var isAbsolute = thisDiv.style.position == 'absolute';
if (isAbsolute) thisDiv.style.display = 'none';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment