修改牛客网编辑器字体

把牛客网的代码编辑器字体改成Consolas!

// ==UserScript==
// @name         修改牛客网编辑器字体
// @namespace    http://www.nowcoder.com/
// @version      0.1
// @description  把牛客网的代码编辑器字体改成Consolas!
// @author       delbertbeta
// @match        https://www.nowcoder.com/practice/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    let head = document.getElementsByTagName('head')[0]
    let style = document.createElement('style')
    let value = ".cm-s-monokai.CodeMirror {font-family: 'Monaco','Menlo','Ubuntu Mono','Consolas','source-code-pro',monospace !important}"
    style.innerHTML = value
    head.appendChild(style)
})();

QingJ © 2025

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