Greasy Fork is available in English.

NGA置顶优化

"置顶滚动条移除"

// ==UserScript==
// @name         NGA置顶优化
// @namespace    https://live.bilibili.com/7115892
// @version      0.55
// @author       Windy
// @description:zh-cn "置顶滚动条移除"
// @match        https://bbs.nga.cn/thread.php?fid=*
// @match        https://nga.178.com/thread.php?fid=*
// @match        https://ngabbs.com/thread.php?fid=*
// @grant        none
// @description "置顶滚动条移除"
// ==/UserScript==
var a=document.getElementsByClassName(" ubbcode");
for (var i=0;i<a.length;i++){
        a[i].style.maxHeight='100%';
        a[i].style.borderRight='0';
}