您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Highlight images between JPG, GIF and PNG by border color.
/* ==UserStyle== @name EXhentai Visual Borders Helper @namespace https://greasyfork.org/users/58231 @version 0.0.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 > div > a > img[title*="png"] { border: 3px solid red!important; margin: -2px!important; } #gdt > div > a > img[title*="jpg"], #gdt > div > a > img[title*="jpeg"] { border: 3px solid cyan!important; margin: -2px!important; } #gdt > div > a > img[title*="gif"] { border: 3px solid magenta!important; margin: -2px!important; } }