您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Fixes the major cropping of thumbnails on the pool pages.
// ==UserScript== // @name [Lolibooru] Pool: Fix Thumbnails // @namespace Zolxys // @description Fixes the major cropping of thumbnails on the pool pages. // @include /^https?://lolibooru\.moe/pool/show/\d+/?($|\?|#)/ // @version 1.0 // ==/UserScript== var o = document.getElementById('post-list-posts'); var a = o.childNodes; for (var i = a.length - 1; i >= 0; --i) { if (a[i].nodeType == 3) o.removeChild(a[i]); else if (a[i].nodeName == 'LI') { a[i].style.float = 'none'; var d = a[i].getElementsByTagName('div')[0]; a[i].style.width = d.style.width = d.style.height = ''; var p = d.getElementsByTagName('img')[0]; p.style.marginLeft = p.style.marginRight = '5px'; } } document.getElementById('index-hover-overlay').firstElementChild.style.display = 'none';