Sleazy Fork is available in English.

Larger Previews imagefap.com

11/17/2019, 7:54:58 AM

< Feedback on Larger Previews imagefap.com

Question/comment

§
Posted: 02.12.2022

Fixed it.

// ==UserScript==
// @name Larger Previews imagefap.com
// @namespace Violentmonkey Scripts
// @match https://www.imagefap.com/*
// @grant none
// @version 1.2
// @author Karl Kemp
// @homepage https://chilling.guru
// @description 11/17/2019, 7:54:58 AM
// @esversion
// ==/UserScript==
/* jshint esversion: 6 */
Array.from(document.getElementsByClassName("gal_thumb")).forEach(im => {
im.srcset = im.src.replace("gal", "thumb") + " 20w";
im.style = "width:144px; min-height:96px;";
im.className = "exmin";
})

Post reply

Sign in to post a reply.