Created
June 15, 2023 12:35
-
-
Save Le0X8/310dcecdee7640cccbbf3ea3e55ef98d to your computer and use it in GitHub Desktop.
This one-liner redirects you to a blob url directly created from the site you are visiting
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.location.href = URL.createObjectURL(new Blob([new TextEncoder().encode(document.documentElement.outerHTML).buffer], { type: 'text/html' })); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment