Greasy Fork

自定义站点默认字体

个人向

目前为 2018-09-02 提交的版本。查看 最新版本

// ==UserScript==
// @name         自定义站点默认字体
// @version      1.2.1
// @description  个人向
// @author       iSwfe

// 匹配所有网址
// @match        *://*/*

// @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:PingFang SC,Microsoft YaHei,Consolas !important;}';
    //document.getElementsByTagName('HEAD').item(0).appendChild(style);
    document.documentElement.appendChild(style);
})();