RageNugget / z00m3r

GM_addStyle('.item-image{height: auto ! important;}');
GM_addStyle('.item-image-actual{max-height: 60vh ! important;widht: auto ! important; display: block ! important; position: relative ! important; margin: 0 auto ! important;}');

// ==UserScript==
// @copyright 2018, RageNugget (https://openuserjs.org//users/RageNugget)
// @license MIT
// @name z00m3r 2
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author me
// @match https://pr0gramm.com/*
// @match http://pr0gramm.com/*
// ==/UserScript==

(function () {
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('.item-image{height: auto ! important;}');
addGlobalStyle('.item-image-actual{max-height: 80vh ! important;widht: auto ! important; display: block ! important; position: relative ! important; margin: 0 auto ! important;}');
})();