Sleazy Fork is available in English.

Fuskator.com Full Image Limiter

Limit the size of images in "Full Gallery" mode to the dimensions of the window. Images will use as much space as possible without overflow.

// ==UserScript==
// @name        Fuskator.com Full Image Limiter
// @match       https://fuskator.com/expanded/*
// @version     1.0
// @author      pleazy
// @description Limit the size of images in "Full Gallery" mode to the dimensions of the window. Images will use as much space as possible without overflow.
// @namespace https://greasyfork.org/users/720957
// ==/UserScript==
(() => {
    'use strict';

    var styles = `
  #fullimages img {
    width: initial !important;
    height: initial !important;
    max-width: 100%;
    max-height: 100vh;
  }
`
    var styleSheet = document.createElement("style")
    styleSheet.type = "text/css"
    styleSheet.innerText = styles
    document.head.appendChild(styleSheet)
})();