This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript: | |
| var posts = $.map($('input[value="報酬を受け取る"]').parents('form'), function(form){ | |
| return $.post(form.action); | |
| }); | |
| $.when.apply(null,posts).done(function(){ location.reload();}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript: | |
| $.each($('tr td:last-child').find('a'), function(){ | |
| var a_tag = $(this); | |
| $.get(a_tag.attr('href'), function(data){ | |
| $.each($(data).find('tr td:first-child'), function(){ | |
| var value = $(this).text().match(/防戦力:\d+/); | |
| if ( value ){ | |
| a_tag.parent().append(value[0]); | |
| return false; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript: | |
| var els = document.getElementsByTagName('a'); | |
| as=[]; | |
| for(var i=0;i<els.length && as.length<3;++i){ | |
| var e = els[i]; | |
| if ('進化素材にする'==e.text && 'shortcut_link_show'!=e.id) as.push(e); | |
| } | |
| (function(){ | |
| var e = as.shift(); | |
| if ( e ){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript: | |
| f = (document.getElementById('accesskey_5') | |
| || (function(){ | |
| var inputs = document.getElementsByTagName('input'); | |
| for(var i=0;i<inputs.length;++i){ | |
| if(inputs[i].accessKey==5 || /home|btn_main/.test(inputs[i].className)) return inputs[i]; | |
| } | |
| })() | |
| ).form; | |
| cnt = 0; |
NewerOlder