Created
December 22, 2021 13:39
-
-
Save wernsey/f18d42ecea6b45bfdb1447d6f676b44f to your computer and use it in GitHub Desktop.
Bookmarklet to go search for a page on the Wayback machine
This file contains hidden or 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
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