Gelbooru Thumbnail Enlarger

Larger thumbnails for easier viewing.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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();
})();