质感字体

让每个页面的字体变得有质感

目前為 2019-05-28 提交的版本,檢視 最新版本

// ==UserScript==
// @name         质感字体
// @namespace    http://svnzk.github.io/
// @version      0.1
// @description  让每个页面的字体变得有质感
// @author       svnzk
// @match        https://*/*
// @match        http://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
document.body.style.textShadow="1px 1px 3px #c3c3c3";
var font_style = document.createElement("style");
    font_style.innerHTML = "* {font-family: 'PingFang SC', sans-serif !important;}"
document.body.append(font_style);
    
})();

QingJ © 2025

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