Skip to content

Instantly share code, notes, and snippets.

@mrandrewmills
Created July 15, 2019 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrandrewmills/218618d41cf1a6df401ac9706dc8716f to your computer and use it in GitHub Desktop.
Save mrandrewmills/218618d41cf1a6df401ac9706dc8716f to your computer and use it in GitHub Desktop.
JS Bookmarklet which shows the current page in the Internet Archive's Wayback machine.
javascript: (function () { /* finds current URL in Wayback Machine */ document.location = "https://web.archive.org/web/*/" + document.location; }());
@mrandrewmills
Copy link
Author

For those unfamiliar with the concept of bookmarklets: https://en.wikipedia.org/wiki/Bookmarklet

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment