Greasy Fork is available in English.

PTT預設字型使用微軟正黑體

ptt 字型用微軟正黑體比較不傷眼

您查看的为 2021-09-30 提交的版本。查看 最新版本

// ==UserScript==
// @name         PTT預設字型使用微軟正黑體
// @namespace    https://github.com/livinginpurple
// @version      2021.09.10.02
// @description  ptt 字型用微軟正黑體比較不傷眼
// @license      WTFPL
// @author       livinginpurple
// @match        https://*.ptt.cc/*
// @run-at       document-end
// @grant        GM.xmlHttpRequest
// ==/UserScript==

(function() {
    'use strict';
    const scriptName = GM_info.script.name;
    console.log(`${scriptName} is loading.`);
    $('.bbs-content').css({ 'font-family': 'Microsoft JhengHei' });
    console.log(`${scriptName} is running.`);
})(document);