Skip to content

Instantly share code, notes, and snippets.

@edo9k
Created February 21, 2017 13:10
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 edo9k/23369065b251cfd0eb0b8507d18fff67 to your computer and use it in GitHub Desktop.
Save edo9k/23369065b251cfd0eb0b8507d18fff67 to your computer and use it in GitHub Desktop.
Find cached page version in the WayBackMachine (archive.org).
javascript:(function(){
if (document.URL === "data:text/html,chromewebdata"){
location.href='http://web.archive.org/web/*/'+loadTimeData.data_.summary.failedUrl;
} else {
location.href='http://web.archive.org/web/*/'+document.URL;
}
}())
/* compressed */
javascript:(function(){if(document.URL === "data:text/html,chromewebdata"){location.href='http://web.archive.org/web/*/'+loadTimeData.data_.summary.failedUrl;}else{location.href='http://web.archive.org/web/*/'+document.URL;}}())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment