// ==UserScript== // @name 质感字体 // @namespace http://svnzk.github.io/ // @version 0.6 // @description 让每个页面的字体变得有质感 字体换为萍方字体并添加字体阴影 // @author svnzk // @match https://*/* // @match http://*/* // @run-at document-start // @grant none // @downloadURL none // ==/UserScript== (function() { var font_style = document.createElement("style"); font_style.type = 'text/css'; font_style.innerHTML = "*:not(.fa):not(.fas):not(i):not(.glyphicon):not(.material-icons):not(.iconfont):not(.cmn-icon):not(.icon) {font-family: 'PingFang SC', 'sans-serif' !important; text-shadow:1px 1px 3px #c3c3c3;}"; document.head.append(font_style); })();