bookmarklet
by
suteadolife
2018-02-26 [2018/02/26 23:13:11]
my bookmarklet
-
/*
* @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 です。