Gelbooru Thumbnail Enlarger

Larger thumbnails for easier viewing.

// ==UserScript==
// @name         Gelbooru Thumbnail Enlarger
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Larger thumbnails for easier viewing.
// @author       Sparklepaws
// @match        *://gelbooru.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    const applyCSSChanges = () => {
        const imgSelector = 'article.thumbnail-preview img';
        const images = document.querySelectorAll(imgSelector);
        images.forEach(img => {
            img.style.maxWidth = '250px';
            img.style.maxHeight = '250px';
        });

        const containerSelector = '.thumbnail-preview';
        const containers = document.querySelectorAll(containerSelector);
        containers.forEach(container => {

            container.style.width = '250px';
            container.style.height = '250px';
            container.style.marginTop = '20px';
            container.style.marginLeft = '10px';
            container.style.marginRight = '10px';
        });
    };

    applyCSSChanges();
})();