bookmarklet

    @@ -22,14 +22,14 @@ if (head.attr('colspan') == 5) { console.log('skip header1: ' + head.text()); - return false; + return true; } head = $(e).find('td[colspan]'); if (head.attr('colspan') == 5) { console.log('skip header2: ' + head.text()); - return false; + return true; } if( count > 5 )
  • /*
     * @title bookmarklet
     * @description my bookmarklet
     * @include http://*
     * @license MIT License
     * @require 
     */
    void((function(f){
        var script = document.createElement('script');
        script.src = '//code.jquery.com/jquery-3.2.1.min.js';
        script.onload = function(){
          var $ = jQuery.noConflict(true);
          f($);
        };
        document.body.appendChild(script);
    })(
    function($, undefined){
        count = 0;
        $('div.series-difficulty>table>tbody>tr').each(function(i,e)
        {
            head  = $(e).find('th[colspan]');
            if (head.attr('colspan') == 5)
            {
                console.log('skip header1: ' + head.text());
                return true;
            }
    
            head  = $(e).find('td[colspan]');
            if (head.attr('colspan') == 5)
            {
                console.log('skip header2: ' + head.text());
                return true;
            }
    
            if( count > 5 )
            {
               console.log('break function');
               return false;
            }
    
            console.log(count + '(' + i + ')');
            $(e).find('td').each(function(ii,ee)
            {
                if ($(ee).length)
                {
                    console.log('  ' + $(ee).text());
                }
                else
                {
                    console.log('  ' + $(ee).find('img[src]').first().attr('src'));
                }
            });
    
            count++;
        });
        console.log('end function');
    }
    )
    );
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2018/02/26 23:13:11 - 2018-02-26
  2. 2018/02/26 23:05:52 - 2018-02-26
  3. 2018/02/26 21:57:49 - 2018-02-26
  4. 2018/02/26 21:53:43 - 2018-02-26
  5. 2018/02/26 21:41:08 - 2018-02-26