Larger Preview Images

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

As of 2019-11-17. See the latest version.

// ==UserScript==
// @name        Larger Preview Images
// @namespace   Violentmonkey Scripts
// @match       https://www.imagefap.com
// @grant       none
// @version     1.0
// @author      Karl Kemp
// @esversion   6
// @description 11/17/2019, 7:54:58 AM
// ==/UserScript==

Array.from(document.getElementsByClassName("gal_mini")).forEach(im => {
   im.srcset = im.src.replace("mini", "thumb") + " 20w";
   im.style = "width:144px; min-height:96px;";
   im.className = "exmin";
})