您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Larger thumbnails for easier viewing.
// ==UserScript== // @name Gelbooru Thumbnail Enlarger // @namespace http://tampermonkey.net/ // @version 1.1 // @description Larger thumbnails for easier viewing. // @author Sparklepaws // @match *://gelbooru.com/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; const applyCSSChanges = () => { const imgSelector = 'article.thumbnail-preview img'; const images = document.querySelectorAll(imgSelector); images.forEach(img => { img.style.maxWidth = '250px'; img.style.maxHeight = '250px'; }); const containerSelector = '.thumbnail-preview'; const containers = document.querySelectorAll(containerSelector); containers.forEach(container => { container.style.width = '250px'; container.style.height = '250px'; container.style.marginTop = '20px'; container.style.marginLeft = '10px'; container.style.marginRight = '10px'; }); }; applyCSSChanges(); })();