Gelbooru Thumbnail Enlarger

Larger thumbnails for easier viewing.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

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