KamePT大图预览

修改种子页面预览图尺寸

// ==UserScript==
// @name         KamePT大图预览
// @namespace    https://kamept.com
// @version      0.2
// @description  修改种子页面预览图尺寸
// @author       You
// @match        https://kamept.com/torrents.php*
// @grant        none
// @license      MIT
// @author       y1
// ==/UserScript==

(function() {
    'use strict';

    window.addEventListener('scroll', function() {
        var images = document.querySelectorAll('.nexus-lazy-load.preview');
        images.forEach(function(image) {
            image.style.maxHeight = '460px';
            image.style.maxWidth = '460px';
        });
    });
})();