EXhentai Visual Borders Helper

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

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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