Skip to content

Instantly share code, notes, and snippets.

@dwsmart
Created March 11, 2020 17:27
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 dwsmart/aea4e3ead82d7322b4c060b93e22e2b3 to your computer and use it in GitHub Desktop.
Save dwsmart/aea4e3ead82d7322b4c060b93e22e2b3 to your computer and use it in GitHub Desktop.
//Run this in the console, will cooy the shadow DOM to the light. Will only work for open ones, and will not recurse nested shadow DOMs
for (let elMnt of document.getElementsByTagName('*')) {
if (elMnt.shadowRoot) elMnt.innerHTML = elMnt.shadowRoot.innerHTML;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment