Skip to content

Instantly share code, notes, and snippets.

@Le0X8
Created June 15, 2023 12:35
Show Gist options
  • Save Le0X8/310dcecdee7640cccbbf3ea3e55ef98d to your computer and use it in GitHub Desktop.
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
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