Skip to content

Instantly share code, notes, and snippets.

@Nixinova
Last active May 11, 2021 08:10
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 Nixinova/b038890ce819fd1383629a442d8442f8 to your computer and use it in GitHub Desktop.
Save Nixinova/b038890ce819fd1383629a442d8442f8 to your computer and use it in GitHub Desktop.
Strip all CSS from HTML source
// Place in devtools
function decss(html) {
return html
.replace(/<link\s+rel=('|"|\s*)stylesheet.*?>/g, '')
.replace(/style=".+?"/g, '')
}
basehtml = document.getElementsByTagName('html')[0]
basehtml.innerHTML = decss(basehtml.innerHTML)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment