// ==UserScript== // @name 替换Ubuntu字体 // @namespace http://tampermonkey.net/ // @version 0.4 // @description 替换网页字体为Ubuntu,特殊处理等宽字体 // @include http://* // @include https://* // @run-at document-end // @grant none // @downloadURL none // ==/UserScript== (function () { 'use strict' const eles = document.getElementsByTagName("*") for (let i = 0; i < eles.length; i++) { eles[i].style.fontFamily = window.getComputedStyle(eles[i]).fontFamily.includes('mono') || window.getComputedStyle(eles[i]).fontFamily.includes('Mono') ? 'Ubuntu Mono' : 'Ubuntu' } })()