Sleazy Fork is available in English.

fusker.xxx Image Size Limiter & Click Navigation

Limit the size of images to the dimensions of the window. Images will use as much space as possible without overflow. Also lets you click on images to navigate to the next image.

// ==UserScript==
// @name        fusker.xxx Image Size Limiter & Click Navigation
// @match       https://*.fusker.xxx/*
// @version     1.3
// @author      pleazy
// @description Limit the size of images to the dimensions of the window. Images will use as much space as possible without overflow. Also lets you click on images to navigate to the next image.
// @namespace https://greasyfork.org/users/720957
// @license MIT
// ==/UserScript==
(() => {
    'use strict';

    var styles = `
  body {
    max-width: none;
    margin: 0;
  }
  p > img, div > 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)
    // console.log("before");
    // add click navigation functionality (last image will cause an error... but who cares ;)
    setTimeout(() => {
      document.querySelectorAll('p > img, div > img').forEach((currentValue, currentIndex, listObj) => {
      // console.log(listObj);
        currentValue.addEventListener("click", () => {
            listObj[currentIndex + 1].scrollIntoView(true);
        });
    });
    }, "2000");
  // console.log("after");
})();