字体样式美化

使得字体更加好看^_^

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);
长期地址
遇到问题?请前往 GitHub 提 Issues。