// ==UserScript== // @name 2chサムネイル表示 // @namespace http://tampermonkey.net/ // @version 0.0.5 // @description 2ちゃんねるに貼られている画像のサムネイルを表示します。 // @author Togetoge // @match http://*.2ch.net/test/read.cgi/* // @match http://*.bbspink.com/test/read.cgi/* // @match http://open2ch.net/* // @grant none // @require http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js // @downloadURL none // ==/UserScript== $(function(){ $('a').each(function(){ var address = $(this).text(); var end = address.substr(address.length-3); if(end=="jpg" || end=="png" || end=="gif" || end=="bmp" || end=="rge"){ $(this).after($('
')); } }); })(jQuery);