//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