EXhentai Visual Borders Helper

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

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

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