NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name HuntingBeast Image Enlarger
// @namespace http://www.thehuntingbeast.com
// @version 0.2
// @description bigger pictures in post
// @author colic
// @include http://*thehuntingbeast.com/*
// @grant none
// ==/UserScript==
var imgs = document.getElementsByClassName("postimage");
for( var i = 0; i < imgs.length; i++ )
{
imgs[i].setAttribute('style', 'max-width: 100% !important');
}