Greasy Fork

Greasy Fork is available in English.

小米社区 - 更换网页字体

小米社区默认的 mipro 字体在 PC 上效果不好,有毛刺,改为微软雅黑看起来要好很多

当前为 2020-08-17 提交的版本,查看 最新版本

// ==UserScript==
// @name         小米社区 - 更换网页字体
// @namespace    https://yinrenjie.com/
// @version      0.1
// @description  小米社区默认的 mipro 字体在 PC 上效果不好,有毛刺,改为微软雅黑看起来要好很多
// @author       Jie
// @match        https://*.xiaomi.cn/*
// @match        https://xiaomi.cn/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var style = ".container,.titlePic .pic-name,.detail-content .left-con .detail .main .author-name,.Comment .Comment-author, .Comment .subComment-author,.ant-layout-header,.content-say .say-title{font-family:'Microsoft YaHei';}";
    var ele = document.createElement("style");
    ele.innerHTML = style;
    document.getElementsByTagName('head')[0].appendChild(ele)
})();