Skip to content

Instantly share code, notes, and snippets.

@wernsey
Created December 22, 2021 13:39
Show Gist options
  • Save wernsey/f18d42ecea6b45bfdb1447d6f676b44f to your computer and use it in GitHub Desktop.
Save wernsey/f18d42ecea6b45bfdb1447d6f676b44f to your computer and use it in GitHub Desktop.
Bookmarklet to go search for a page on the Wayback machine
javascript:(
/*
Bookmarklet to go search for a page on the Wayback machine
https://en.wikipedia.org/wiki/Help:Using_the_Wayback_Machine
The /1if_/ trick comes from here https://news.ycombinator.com/item?id=29646312
*/
function (){
window.location=`https://web.archive.org/web/1if_/${window.location}`;
}
)()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment