Larger Previews imagefap.com

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

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