program666 / resizeImages

// ==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%");
  });
});