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

    @@ -1,9 +1,15 @@ /* * @title Amazonの本を国会図書館で検索する * @description 便利 - * @include http://* + * @include https://www.amazon.co.jp/* * @license MIT License */ -const title = document.getElementById('productTitle').innerText.trim(); -window.open(`https://iss.ndl.go.jp/books?any=${encodeURIComponent(title)}`); +(() => { + const title = document.getElementById("productTitle").innerText.trim(); + 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` + ); +})();
  • /*
     * @title Amazonの本を国会図書館で検索する
     * @description 便利
     * @include https://www.amazon.co.jp/*
     * @license MIT License
     */
    
    (() => {
      const title = document.getElementById("productTitle").innerText.trim();
      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 です。