// ==UserScript== // @name 2ch画像表示 // @namespace http://tampermonkey.net/ // @version 0.0.3 // @description 画像リンクのサムネイルをリンクの下に表示します。ガバガバスクリプトでごめんなさい // @author Togetoge // @match http://*.2ch.net/test/read.cgi/* // @match http://*.bbspink.com/test/read.cgi/* // @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"){ $(this).after($('
')); } }); })(jQuery);