使用serif字体

免流使用serif字体

当前为 2024-05-01 提交的版本,查看 最新版本

// ==UserScript==
// @name         使用serif字体
// @namespace    https://greasyfork.org/
// @version      0.1
// @description  免流使用serif字体
// @author       You
// @license MIT
// @run-at       document-start
// @match        *://*/*
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';
/*
*想要网页的字体统一点,可把body改成*,用body意在多样性。节点特定字体,不会生效
*font-size 字体大小
*font-weight 字体粗细
*/

GM_addStyle(`body{font-size:12pt;font-weight:650;font-family:serif}`);

})();