字体样式美化

使得字体更加好看^_^

目前為 2015-10-05 提交的版本,檢視 最新版本

// ==UserScript==
// @name        字体样式美化
// @namespace   http://daysv.github.com
// @description 使得字体更加好看^_^
// @version     1
// @include       *
// @grant       none
// ==/UserScript==

var css = document.createElement('style');
var text = document.createTextNode('*{text-decoration:none!important;font-weight:500!important;}*:not([class*="hermit"]):not([class*="btn"]):not([class*="button"]):not([class*="icon"]):not(i){font-family: "Microsoft Yahei", "Microsoft Yahei" !important; }*{text-shadow:0.005em 0.005em 0.025em #999999 !important;}');
css.appendChild(text);
document.getElementsByTagName('head') [0].appendChild(css);

QingJ © 2025

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