M-Team大图预览

修改种子页面预览图尺寸

// ==UserScript==
// @name         M-Team大图预览
// @namespace    https://kp.m-team.cc
// @version      0.2
// @description  修改种子页面预览图尺寸
// @author       You
// @match        https://kp.m-team.cc/browse/adult
// @grant        none
// @license      MIT
// @author       y1
// ==/UserScript==


(function() {
    'use strict';

    document.addEventListener('wheel', function(event) {
        if (event.deltaY > 0) {
            document.querySelectorAll('.ant-image-img').forEach(function(element) {
                element.style.width = '600px';
                element.style.height = '400px';
            });
        } else if (event.deltaY < 0) {
            // Code to revert changes if scrolling up
        }
    });
})();