gh-better-monospace

Better github code reading experience

// ==UserScript==
// @name         gh-better-monospace
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Better github code reading experience
// @author       Haishan
// @include      https://*github.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    var s = document.createElement('style');
    var head = document.querySelector('head');
    s.innerText = '.blob-code-inner, code, pre { font-family: Inconsolata; font-size: 14px; }';
    head.appendChild(s);
})();

QingJ © 2025

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