// ==UserScript== // @name 字体优化 // @version 1.0.0 // @icon https://bkimg.cdn.bcebos.com/pic/9922720e0cf3d7ca5295046bf81fbe096b63a94f // @description 雅黑建议设置#828282或#797979 // @author wze // @match *://*/* // @run-at document-start // @grant GM_addStyle // @grant GM_getValue // @grant GM_setValue // @grant GM_registerMenuCommand // @grant GM_getResourceText // @grant GM_deleteValue // @grant GM_xmlhttpRequest // @grant GM_setClipboard // @license MIT // @namespace https://greasyfork.org/users/1456747 // @downloadURL none // ==/UserScript== (function () { 'use strict' GM_addStyle(` html,body,* { text-shadow: 0px 0px 0.8px #828282; -moz-osx-font-smoothing: grayscale; } `) })()