codecombat代码变大

codecombat代码变大!

// ==UserScript==
// @name         codecombat代码变大
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  codecombat代码变大!
// @author       You
// @match        https://codecombat.cn/play/level/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=undefined.
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    var elm = document.getElementsByClassName("ace_content")[0];
    var newStyle = elm.getAttribute("style") + "font-size:20px;";
    elm.setAttribute("style", newStyle);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址