Created
September 27, 2022 15:30
-
-
Save Getaji/739e60ac0669c22a3f0af27454f27c2e to your computer and use it in GitHub Desktop.
Wayback Machineで指定URL以下のキャプチャ(アーカイブ)を表示するページを開くスクリプト
This file contains 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
(() => { | |
const s = prompt("URL", location.href); | |
if (!s) return; | |
open("https://web.archive.org/web/*/" + s + (s.endsWith("/") ? "*" : "/*")); | |
})(); |
This file contains 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
(()=>{let e=prompt("URL",location.href);e&&open("https://web.archive.org/web/*/"+e+(e.endsWith("/")?"*":"/*"))})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment