Greasy Fork is available in English.
个人向
当前为
// ==UserScript==
// @name 自定义站点默认字体
// @version 1.2.0
// @description 个人向
// @author iSwfe
// @match *://*
// 百度系
// @match *://*.baidu.com/*
// 淘宝/天猫系
// @match *://*.taobao.com/*
// @match *://*.tmall.com/*
// 新浪系
// @match *://*.sina.com.cn/*
// mi.com
// @match *://*.mi.com/*
// @match *://*.miui.com/*
// 10fastfingers.com
//@match *://*.10fastfingers.com/*
//@match *://*.panda.tv/*
// @run-at document-start
// @grant unsafeWindow
// @license MIT
// @namespace http://greasyfork.icu/zh-CN/users/208142-iswfe
// ==/UserScript==
(function() {
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML='*:not([class*="icon"]):not([class*="stonefont"]):not(i){font-family:PingFang SC,Microsoft YaHei,Consolas !important;}';
//document.getElementsByTagName('HEAD').item(0).appendChild(style);
document.documentElement.appendChild(style);
})();