Github-code-font

github code font changer

< 脚本Github-code-font的反馈

提问/评论

§
发表于:2022-10-03

Working example, which does not raise blob-code-inner font size (Github appears to us 12px) and switches to IBM Plex Mono:

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

var fontsize ="16px";
var fontfamily ="IBM Plex Mono";

// 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-inner { font-family: ' + fontfamily + '; } ' +
    '.blob-code { font-size: ' + fontsize + '; font-family: ' + fontfamily + '; } ' +
    '.blob-num { font-size: ' + fontsize + '; font-family: ' + fontfamily + '; } ' +
    '');

发表回复

登录(不可用)以发表回复。

QingJ © 2025

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