Greasy Fork is available in English.
全网页设置最漂亮的代码——Hack字体
当前为
// ==UserScript==
// @name 全网页设置最漂亮字体
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 全网页设置最漂亮的代码——Hack字体
// @author Enjoy_li
// @match *://*/*
// @exclude https://*.worktile.com/files/*
// @license MIT
// @icon https://foruda.gitee.com/avatar/1670573459057755761/4867929_enjoy-li_1670573458.png!avatar60
// @grant none
// ==/UserScript==
;(function () {
'use strict'
var fontStyle = document.createElement('style')
fontStyle.id='Enjoy-Hack'
fontStyle.type = 'text/css'
fontStyle.innerHTML = `
@font-face {
font-family:'Hack NF';
src:url('https://gitee.com/Enjoy-li/public-assets/raw/master/assets/Hack-Nerd-Font/Hack%20Regular%20Nerd%20Font%20Complete.ttf')
}
body,
code,
tbody {
font-family: 'Hack NF' !important;
}
`
function initStyle() {
document.head.appendChild(fontStyle)
}
if (document.contentType.startsWith('text/html')) {
initStyle()
}
})()