diff --git a/bookmarklets/archive.js b/bookmarklets/archive.js new file mode 100644 index 0000000..06fc74a --- /dev/null +++ b/bookmarklets/archive.js @@ -0,0 +1,2 @@ +//Is the current website archived ? +javascript:(function(){if(location.href.indexOf('http')!=0){input=prompt('URL:','http://');if(input!=null){location.href='http://web.archive.org/web/*/'+input}}else{location.href='http://web.archive.org/web/*/'+location.href;}})();