From f202d3bb234eebb35774192949328d46037bbdee Mon Sep 17 00:00:00 2001 From: SansGuidon Date: Thu, 12 Dec 2024 12:11:04 +0000 Subject: [PATCH] add(bookmarklet) search url in web archive --- bookmarklets/archive.js | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 bookmarklets/archive.js 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;}})();