自定义站点默认字体(Windows: 落霞文楷)

个人向,需要下载对应的字体文件

目前为 2023-03-30 提交的版本。查看 最新版本

// ==UserScript==

// @name 自定义站点默认字体(Windows: 落霞文楷)

// @version 1.1.3

// @description 个人向,需要下载对应的字体文件

// @author isloxi

// @match *://*.baidu.com/*

// @match *://*.taobao.com/*

// @match *://*.tmall.com/*

// @match *://*.sina.com.cn/*
// @match *://*.bilibili.com/*

// @match *://*.miui.com/*
// @match *://*.douyu.com/*
// @match *://*.tampermonkey.net/*

// @run-at document-start

// @grant unsafeWindow

// @license MIT

// @namespace gf.qytechs.cn

// ==/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);

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址