NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name resizeImages
// @namespace ys
// @include http://forums.somethingawful.com/*
// @version 1
// @grant none
// ==/UserScript==
$(window).load(function(){
$(".postbody").find("img").each(function(){
if($(this).width() > ($("body").width() - 300))
$(this).css("width", "100%");
});
});