Skip to content

Instantly share code, notes, and snippets.

@n8jadams
Created April 30, 2022 01:55
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 n8jadams/4c6f07247195e05a4bdb8d4e597f4209 to your computer and use it in GitHub Desktop.
Save n8jadams/4c6f07247195e05a4bdb8d4e597f4209 to your computer and use it in GitHub Desktop.
A quick script to remove all styling from a website
document.querySelectorAll('style, link[rel="stylesheet"]').forEach(el => el.parentNode.removeChild(el))
document.querySelectorAll('[style]').forEach(el => el.style = null)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment