Greasy Fork

Greasy Fork is available in English.

质感字体

让每个页面的字体变得有质感 字体换为萍方字体并添加字体阴影

目前为 2019-08-12 提交的版本。查看 最新版本

// ==UserScript==
// @name         质感字体
// @namespace    http://svnzk.github.io/
// @version      0.8
// @description  让每个页面的字体变得有质感 字体换为萍方字体并添加字体阴影
// @author       svnzk
// @match        https://*/*
// @match        http://*/*
// @run-at       document-start
// @grant        none
// ==/UserScript==
//2019-08-12 更新 v0.8 : [修复] 修复大部分使用 icon 为类名的图标显示为方框的问题 [新增] 添加了几个图标字体以防图标变为方框
(function() {
var font_style = document.createElement("style");
    font_style.type = 'text/css';
        font_style.innerHTML = " *:not([class*='icon']):not(.fa):not(.fas):not(i) {font-family: 'PingFang SC', 'sans-serif' ,'Icons' ,'brand-icons' ,'FontAwesome','Material Icons','Glyphicons Halflings'  !important; text-shadow:1px 1px 3px #c3c3c3;}";
document.head.append(font_style);
})();