// ==UserScript== // @name Godot 在线文档内容加宽 // @namespace http://tampermonkey.net/ // @version 0.1 // @license MIT // @description Godot 在线文档宽屏显示,内容视觉占比从57%提高到了89% // @author beibeibeibei // @match https://docs.godotengine.org/* // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; const css = ` body { width: 90%; max-width: 1713px !important; } body > div.wy-grid-for-nav > section.wy-nav-content-wrap > div.wy-nav-content { width: 90%; max-width: 1411px; } `; GM_addStyle(css); })();