页面: 1
https://greasyfork.org/zh-CN/users/208142-iswfe
https://greasyfork.org/zh-CN/scripts/37 … soft-yahei
自定义站点默认字体(Windows: Microsoft YaHei)
// ==UserScript==
// @name 自定义站点默认字体(Windows: Microsoft YaHei)
// @version 1.1.0
// @description 个人向
// @author iSwfe
// 百度系
// @match *://*.baidu.com/*
// 淘宝/天猫系
// @match *://*.taobao.com/*
// @match *://*.tmall.com/*
// 新浪系
// @match *://*.sina.com.cn/*
// MIUI论坛
// @match *://*.miui.com/*
// @match *://*.ksbbs.com/*
// @run-at document-start
// @grant unsafeWindow
// @license MIT
// @namespace https://greasyfork.org/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:Microsoft YaHei !important;}';
//document.getElementsByTagName('HEAD').item(0).appendChild(style);
document.documentElement.appendChild(style);
})();离线
页面: 1