A bookmarklet to copy the rendered HTML of a current page to clipboard
(Drag this button to your boormarks toolbar)navigator.clipboard.writeText(document.documentElement.outerHTML);
The bookmarklet copies the full rendered HTML of the current state of the current page, excluding the DOCTYPE declaration. Could be significantly different from the original HTML received from a web server due to browser processing and JavaScript code modifying the page after loading.
Leave a comment here: @ugnich