Github-code-font

github code font changer

目前为 2019-04-08 提交的版本。查看 最新版本

// ==UserScript==
// @name Github-code-font
// @namespace https://github.com/tjysdsg/github-code-font
// @description github code font changer
// @match https://github.com
// @include https://github.com/*/*
// @version 1
// @author tjysdsg
// @grant none
// ==/UserScript==

var fontsize ="15px";
var fontfamily ="Noto Sans Regular";

// Function helper to inject css
function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

// Apply the font-family definition to code styles.
addGlobalStyle(
    '.blob-code { font-size: ' + fontsize + '; font-family: ' + fontsize + '; } ' +
    '.blob-num { font-size: ' + fontsize + '; font-family: ' + fontsize + '; } ' +
    '');

QingJ © 2025

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