imisswaves / HuntingBeast Image Enlarger

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