EX收藏夹缩略图尺寸修改

收藏夹缩略图尺寸修改

// ==UserScript==
// @name         EX收藏夹缩略图尺寸修改
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  收藏夹缩略图尺寸修改
// @match        https://exhentai.org/favorites.php*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // 获取所有的gl3t div元素
    const elements = document.querySelectorAll('.gl3t');
    elements.forEach(element => {
        // 修改div的高度和宽度
        element.style.height = '340px';
        element.style.width = '250px';

        // 获取div内的图片
        const img = element.querySelector('img');
        if (img) {
            // 设置图片填充整个框
            img.style.width = '100%';
            img.style.height = '100%';
            img.style.objectFit = 'cover';
            img.style.top = '0px'
        }
    });
})();