// ==UserScript== // @name 自定义站点默认字体(Windows: 落霞文楷) // @version 1.1.1 // @description 个人向,需要下载对应的字体文件 // @author iSwfe // 百度系 // @match *://*.baidu.com/* // 淘宝/天猫系 // @match *://*.taobao.com/* // @match *://*.tmall.com/* // 新浪系 // @match *://*.sina.com.cn/* // MIUI论坛 // @match *://*.miui.com/* // @match *://*.tampermonkey.net/* // @run-at document-start // @grant unsafeWindow // @license MIT // @namespace greasyfork.org // @downloadURL none // ==/UserScript== (function() { var style = document.createElement('style'); style.type = 'text/css'; style.innerHTML='*:not([class*="icon"]):not([class*="stonefont"]):not(i){font-family:LXGW WenKai, PingFang SC,Consolas,Microsoft YaHei !important;}'; //document.getElementsByTagName('HEAD').item(0).appendChild(style); document.documentElement.appendChild(style); })();