Tip
- JS/TS
- Golang
- C/C++
- Java
I use a Tampermonkey script to beautify github pages.
// ==UserScript==
// @name beautify-github-pages
// @namespace http://tampermonkey.net/
// @version 1.0.0
// @description beautify-github-pages
// @author https://github.com/161043261
// @match https://github.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=github.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
const head = document.head;
const style = document.createElement('style');
style.textContent = `
* {
font-family: 'Iosevka', 'Menlo', 'Cascadia Code', 'PingFang SC', 'Microsoft YaHei' !important;
}`;
head.appendChild(style);
})();