◀️▶️WebArchive

    @@ -1,21 +1,18 @@ /* - * @title <->WebArchive - * @description WebArchive⇔閲覧ページ間を行き来する。Based On http://d.hatena.ne.jp/Nos/20091028/1256679357 + * @title ◀️▶️WebArchive + * @description WebArchive⇔閲覧ページ間を行き来する。 * @include http://* + * @include https://* + * @contributor Nos http://d.hatena.ne.jp/Nos/20091028/1256679357 + * @contributor noromanba http://let.hatelabo.jp/noromanba/let/gYC-yJTC5uCvSg + * @contributor taizooo http://let.hatelabo.jp/taizooo/let/hJmdhMKzsYUB * @license MIT License * @javascript_url */ -var peep = location.href; - -if (/^https?:\/\/(wayback|web)\.archive\.org\/web/.test(peep)) { - var paap = peep.split('/'); - var n = "http://wayback.archive.org/web/19960101000000/".split("/").length - 1; - for (i = 0; i < n; i++) { - paap.shift(); - } - window.location = paap.join('/'); -} else { - // "19960101000000" is dummy date - window.location = "http://wayback.archive.org/web/19960101000000/" + peep; -} +// "19960101000000" is dummy date +(p => +location = p.includes`.archive.org/web/` + ? p.split`/`.slice(5).join`/` + : 'https://wayback.archive.org/web/19960101000000/' + p +)(location.href)
  • /*
     * @title ◀️▶️WebArchive
     * @description WebArchive⇔閲覧ページ間を行き来する。
     * @include http://*
     * @include https://*
     * @contributor Nos       http://d.hatena.ne.jp/Nos/20091028/1256679357
     * @contributor noromanba http://let.hatelabo.jp/noromanba/let/gYC-yJTC5uCvSg
     * @contributor taizooo   http://let.hatelabo.jp/taizooo/let/hJmdhMKzsYUB
     * @license MIT License
     * @javascript_url
     */
    
    // "19960101000000" is dummy date
    (p => 
    location = p.includes`.archive.org/web/`
     ? p.split`/`.slice(5).join`/`
     : 'https://wayback.archive.org/web/19960101000000/' + p
    )(location.href)
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2019/01/04 04:34:28 - 2019-01-04
  2. 2019/01/04 04:34:20 - 2019-01-04