全网页设置最漂亮字体

全网页设置最漂亮的代码——Hack字体

2022-12-14 या दिनांकाला. सर्वात नवीन आवृत्ती पाहा.

// ==UserScript==
// @name         全网页设置最漂亮字体
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  全网页设置最漂亮的代码——Hack字体
// @author       Enjoy_li
// @match        *://*/*
// @exclude    *hrwork*
// @exclude    *zhaopinyun*
// @homepage     https://greasyfork.org/zh-CN/scripts/456560
// @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()
    }
})()