github code font changer
< 脚本Github-code-font的反馈
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或关注我们的公众号极客氢云获取最新地址
Working example, which does not raise blob-code-inner font size (Github appears to us 12px) and switches to IBM Plex Mono: