Amazonの本を国会図書館で検索する

  • /*
     * @title Amazonの本を国会図書館で検索する
     * @description 便利
     * @include https://www.amazon.co.jp/*
     * @license MIT License
     */
    
    (() => {
      const title = document
        .querySelector("#productTitle")
        .textContent.trim()
        .replaceAll(/[~‐‑‒–—―⁃−⎯⏤─━﹘﹣-ー-]/g, " ")
        .replaceAll(/[()(){}{}[]\[\]【】〈〉〔〕]/g, " ");
      window.open(
        `https://ndlsearch.ndl.go.jp/search?cs=bib&display=panel&from=0&size=20&keyword=${encodeURIComponent(
          title
        )}&f-ht=ndl&f-ht=library&f-mt=dtbook`
      );
    })();
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。