Greasy Fork is available in English.

Small thumbnails

Are thumbnails too large?

/* ==UserStyle==
@name         Small thumbnails
@version      4.0.0
@description  Are thumbnails too large?
Gotcha.
@author       Valognir (https://www.deviantart.com/valognir)
@namespace    https://greasyfork.org/en/scripts/404192-small-thumbnails
==/UserStyle== */
@-moz-document domain("deviantart.com") {
    a[href][title] {
        background-color: var(--g-bg-secondary);
        display: block;
    }
        
    section+a[href][title] {
        background-color: transparent;
    }
    
    a > div > img {
        scale: 70%;
    }
}