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

    @@ -7,10 +7,9 @@ (() => { const title = document - .getElementById("productTitle") - .innerText.trim() - .replace(/[--﹣−‐⁃‑‒–—﹘―⎯⏤ー─━]/g, " "); - + .querySelector("#productTitle") + .textContent.trim() + .replaceAll(/[‐‑‒–—―⁃−⎯⏤─━﹘﹣-ー-]/g, " "); window.open( `https://ndlsearch.ndl.go.jp/search?cs=bib&display=panel&from=0&size=20&keyword=${encodeURIComponent( title
  • /*
     * @title Amazonの本を国会図書館で検索する
     * @description 便利
     * @include https://www.amazon.co.jp/*
     * @license MIT License
     */
    
    (() => {
      const title = document
        .querySelector("#productTitle")
        .textContent.trim()
        .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 です。

History

  1. 2024/01/27 10:25:18 - 2024-01-27
  2. 2024/01/26 16:17:25 - 2024-01-26
  3. 2024/01/17 10:26:40 - 2024-01-17
  4. 2024/01/12 16:05:23 - 2024-01-12
  5. 2024/01/09 22:44:18 - 2024-01-09
  6. 2022/03/18 14:54:45 - 2022-03-18
  7. 2022/03/18 14:37:32 - 2022-03-18