Greasy Fork is available in English.
当前为
// ==UserScript==
// @name NGA置顶优化
// @namespace http://tampermonkey.net/
// @version 0.1
// @author bAdWindy
// @description:zh-cn "置顶滚动条移除"
// @match https://bbs.nga.cn/thread.php?fid=*
// @grant none
// ==/UserScript==
(function() {
var a=document.getElementsByClassName(" ubbcode");
for (var i=0;i<a.length;i++){
a[i].style.maxHeight='';
}
})();