您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Shows larger thumbnails on the comments page.
// ==UserScript== // @name [Konachan / yande.re / LB] Comments: Show Large Thumbnails // @namespace Zolxys // @description Shows larger thumbnails on the comments page. // @include /^https?://konachan\.com/comment/?($|\?|#)/ // @include /^https?://konachan\.net/comment/?($|\?|#)/ // @include /^https?://yande\.re/comment/?($|\?|#)/ // @include /^https?://lolibooru\.moe/comment/?($|\?|#)/ // @version 1.4 // ==/UserScript== var ss = document.createElement('style'); ss.type = 'text/css'; ss.textContent = 'div#comment-list > div.post > div.col1 {width: 320px;}'; document.head.appendChild(ss); var a = document.getElementsByTagName('img'); for (var i = 0; i < a.length; i++) if (a[i].parentNode.parentNode != null) if (a[i].parentNode.parentNode.className == 'col1') { a[i].removeAttribute('width'); a[i].removeAttribute('height'); }