Skip to content

Instantly share code, notes, and snippets.

@thekingofbandit
Forked from Kartones/no-css
Created June 27, 2020 17:28
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 thekingofbandit/fc4ae969d82477799df7da4e40e8f164 to your computer and use it in GitHub Desktop.
Save thekingofbandit/fc4ae969d82477799df7da4e40e8f164 to your computer and use it in GitHub Desktop.
Bookmark to remove all CSS, JS and iframesfrom a page. Just paste as new bookmark
javascript:%20var%20el,%20i,%20size;%20%20for(i=0,%20size=document.styleSheets.length;%20i<size;%20i++)%20{%20void(document.styleSheets.item(i).disabled=true);%20}%20%20el%20=%20document.getElementsByTagName('script');%20%20while%20(el.length%20>%200)%20{%20%20void(el[0].parentNode.removeChild(el[0]));%20%20}%20%20el%20=%20document.getElementsByTagName('link');%20%20while%20(el.length%20>%200)%20{%20%20void(el[0].parentNode.removeChild(el[0]));%20%20}%20%20el%20=%20document.getElementsByTagName('iframe');%20%20while%20(el.length%20>%200)%20{%20%20void(el[0].parentNode.removeChild(el[0]));%20%20}%20%20el%20=%20document.getElementsByTagName('*');%20%20for%20(%20i=0,%20size=el.length;%20i%20<%20size;%20i++)%20{%20%20void(el[i].style.cssText%20=%20'');%20%20}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment