Greasy Fork is available in English.

使用serif字体

安卓手机一般使用的是Sans Serif字体,偶尔使用下Serif字体也不错

// ==UserScript==
// @name         使用serif字体
// @namespace    https://greasyfork.org/
// @version      240906.18
// @description  安卓手机一般使用的是Sans Serif字体,偶尔使用下Serif字体也不错
// @author       You
// @license MIT
// @run-at       document-end
// @match        *://*/*
// @grant        GM_addStyle
// ==/UserScript==

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

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

/*非手机网页加大字体*/
document.body.scrollWidth>768&&GM_addStyle(`body{font-size:${parseFloat(getComputedStyle(document.body).fontSize)*1.77}px}`);

})();