EXhentai Visual Borders Helper

Highlight images between JPG, GIF and PNG by border color.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

/* ==UserStyle==
@name           EXhentai Visual Borders Helper
@namespace      https://greasyfork.org/users/58231
@version        0.0.2.1
@description    Highlight images between JPG, GIF and PNG by border color.
@author         Jaraya
==/UserStyle== */
@-moz-document url-prefix("https://exhentai.org/g/"),
url-prefix("https://e-hentai.org/g/") {
    #gdt a div div[title*="png"] {
        border: 3px solid red!important;
        margin: -2px!important;
    }

    #gdt a div div[title*="jpg"],
    #gdt a div div[title*="jpeg"] {
        border: 3px solid cyan!important;
        margin: -2px!important;
    }

    #gdt a div div[title*="gif"] {
        border: 3px solid magenta!important;
        margin: -2px!important;
    }
    #gdt a div div[title*="webp"] {
        border: 3px solid green!important;
        margin: -2px!important;
    }
}