Greasy Fork is available in English.

Godot 在线文档宽屏显示

Godot 在线文档宽屏显示,解决表格被overflow属性隐藏的问题,内容视觉占比从57%提高到了89%

// ==UserScript==
// @name         Godot 在线文档宽屏显示
// @namespace    http://tampermonkey.net/
// @version      0.1
// @license      MIT
// @description  Godot 在线文档宽屏显示,解决表格被overflow属性隐藏的问题,内容视觉占比从57%提高到了89%
// @author       beibeibeibei
// @match        *docs.godotengine.org/zh_CN/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    document.querySelector("body").style.width = "90%";
    document.querySelector("body").style.maxWidth = "1713px";
    document.querySelector("body > div.wy-grid-for-nav > section.wy-nav-content-wrap > div.wy-nav-content").style.width = "90%";
    document.querySelector("body > div.wy-grid-for-nav > section.wy-nav-content-wrap > div.wy-nav-content").style.maxWidth = "1411px";
})();