>>241
さらにさらに自己レス。たぶんこれで終わり。

先のスクリプトを、Internet Archive で保存されたページ用に変更。まあ4行目をいじっただけだけど。
これで画像リンクの全ページが表示された状態で読める。ローカル保存しなくてもね。

https://web.archive.org/web/20170122172909/www.geocities.jp/hizakata_toshizo_25/list.html

Array.from(document.links).forEach(e => {
var body = document.getElementsByTagName('body')[0];
var img = document.createElement('img');
img.src = e.href.replace(/(web\/\d+)/, '$1'+'if_');
var br = document.createElement('br');
body.appendChild(img);
body.appendChild(br);
})