Amazon の商品を、Kinoppy電子書籍検索

    @@ -1,5 +1,5 @@ /* - * @title Amazon の商品を、紀伊国屋書店で在庫検索 + * @title Amazon の商品を、Kinoppy電子書籍検索 * @description forked from http://let.hatelabo.jp/a-kuma3/let/gYC-y73gsPTiZA * @include http://* * @license MIT License @@ -12,9 +12,8 @@ for (i in ee) { if (ee[i].innerHTML == "ISBN-13:") { var dest = - "http://www.kinokuniya.co.jp/disp/CKnSfStockSearchStockView.jsp?CAT=01&GOODS_STK_NO=" + - ee[i].nextSibling.nodeValue.replace(/[^\d]*(\d+)-(\d+).*/, "$1$2") + - "&MAN_ENTR_CD1=FA"; + "http://www.kinokuniya.co.jp/disp/CSfDispListPage_001.jsp?qs=true&ptk=03&q=" + + ee[i].nextSibling.nodeValue.replace(/[^\d]*(\d+)-(\d+).*/, "$1$2"); location.href = dest; return; }
  • /*
     * @title Amazon の商品を、Kinoppy電子書籍検索
     * @description forked from http://let.hatelabo.jp/a-kuma3/let/gYC-y73gsPTiZA
     * @include http://*
     * @license MIT License
     * @require 
     */
    
    (function(){
        var i;
        var ee = document.getElementsByTagName("B");
        for (i in ee) {
            if (ee[i].innerHTML == "ISBN-13:") {
                var dest = 
                    "http://www.kinokuniya.co.jp/disp/CSfDispListPage_001.jsp?qs=true&ptk=03&q=" +
                    ee[i].nextSibling.nodeValue.replace(/[^\d]*(\d+)-(\d+).*/, "$1$2");
                location.href = dest;
                return;
            }
        }
    })();
    
    
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2013/06/28 16:48:39 - 2013-06-28
  2. 2013/06/28 16:47:42 - 2013-06-28
  3. 2013/06/28 16:47:27 - 2013-06-28
  4. 2013/06/28 16:43:28 - 2013-06-28