Are you sure you want to go to an external site to donate a monetary value?
WARNING: Some countries laws may supersede the payment processors policy such as the GDPR and PayPal. While it is highly appreciated to donate, please check with your countries privacy and identity laws regarding privacy of information first. Use at your utmost discretion.
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;}');
})();