0049.油猴脚本——Wide Hentai 2019
主页
简介
Wide E-Hentai and Exhentai - support for wide 1920px monitors
简单说就是自定义EX,EH每行显示相册个数
在下面这行代码修改,目前显示6个相册
1
| c("itg gld")[0].style = "grid-template-columns: repeat(6,1fr)"
|
代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
function $(id) {return document.getElementById(id);} function c(id) {return document.getElementsByClassName(id);} if(window.location.pathname.indexOf("/g/") != 0) { c("ido")[0].style.maxWidth = "1895px"; c("itg gld")[0].style = "grid-template-columns: repeat(6,1fr)"; } else { c("ptt")[0].style.margin = "45px auto 2px"; if(c("gdtl").length != 0) { $("gdt").style.maxWidth = "1890px"; var im = c("gdtl"); for(var i=0; i< im.length; i++) { im[i].style.width = "234px"; } } else { $("gdt").style.maxWidth = "1681px"; } }
|