Greasy Fork is available in English.

bolder font

网页字体加粗

// ==UserScript==
// @name         bolder font
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  网页字体加粗
// @author       foolmos
// @match        *
// @grant        GM_addStyle
// @license MIT
// ==/UserScript==
 
GM_addStyle("* {font-weight:bold !important;}");

(function() {
    'use strict';
 
    // Your code here...
})();