theorangesauce
Thu, Feb 28 '19, 05:23
Userscript to resize images
Until the mods get image sizes under control, I made a userscript you can use with Tampermonkey or other browser extensions to reduce the maximum width of images.

// ==UserScript==
// @name Resize Images
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Resizes images on ProtonBooru so that they actually fit on screen
// @author TheOrangeSauce
// @match https://proton.booru.org/*
// @grant none
// ==/UserScript==

(function() {
'use strict';
var image = document.getElementById("image");
if(image){
image.style.maxWidth = "80%";
}
})();
1


Reply | New Topic | Help | Forum Index


Would you like to help us to try to get this site ad free? Check out our patreon!