Greasy Fork is available in English.

放大runoob的字体

更改runoob的样式

// ==UserScript==
// @name         放大runoob的字体
// @namespace    runoob
// @version      0.3
// @description  更改runoob的样式
// @author       ss
// @match        https://www.runoob.com/*
// @grant        none
// ==/UserScript==
(function() {
    'use strict';
    $('.fivecol.last.right-column').css({"display":"none"});
    $('.col.middle-column').css({"width":"84%"});
    $('.article-body .article-intro p').css({"font-size":"18px"});
    $('.article-body pre').css({"font-size":"14px","line-height":"22px"});
})();