Greasy Fork is available in English.
2(5)ちゃんねるに貼られている画像のサムネイルを表示します。
// ==UserScript==
// @name 2ch(5ch)サムネイル表示
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 2(5)ちゃんねるに貼られている画像のサムネイルを表示します。
// @author ぬ
// @match http://*.5ch.net/*
// @match https://*.5ch.net/*
// @match http://*.2ch.sc/*
// @match https://*.2ch.sc/*
// @match http://*.bbspink.com/*
// @match https://*.bbspink.com/*
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js
// ==/UserScript==
$(function(){
$('a').each(function(){
var address = $(this).text();
var tmp = address.split('.');
var ext = tmp[tmp.length-1];
if(ext=="jpg" ||ext=="jpeg" || ext=="png" || ext=="gif" || ext=="bmp" || ext=="jpg:large" || ext=="jpeg:large" || ext=="png:large"){
$(this).after($('</br><a href='+address+' target="_blank"><img src='+address+' width=400/></a></br>'));
}
});
$(".thumb_i").each(function(){
$(this).hide();
});
})(jQuery);