"NGA帖子内容过宽调整"
// ==UserScript== // @name NGA帖子内容过宽调整 // @namespace https://live.bilibili.com/7115892 // @version 0.1 // @author Windy // @match https://bbs.nga.cn/read.php?tid=* // @grant none // @description:zh-cn "NGA帖子内容过宽调整" // @description "NGA帖子内容过宽调整" // ==/UserScript== var Windysheet=document.createElement('style'); Windysheet.type="text/css"; Windysheet.innerHTML=".forumbox .postrow .postcontent {display: block!important;}"; document.body.appendChild(Windysheet); var Windyheight=document.createElement('style'); window.scrollTo({ top: 32400, behavior: "smooth" }); setTimeout( function (){ window.scrollTo({ top: 0, behavior: "smooth" }); } , 500);