Greasy Fork

Greasy Fork is available in English.

福步论坛帖子字体修改

替换福步论坛帖子内容字体为微软雅黑,增大字号和文本间距,参考了http://greasyfork.icu/zh-CN/scripts/374194 的内容。

目前为 2019-11-18 提交的版本,查看 最新版本

// ==UserScript==
// @namespace      https://blog.naibabiji.com
// @name           福步论坛帖子字体修改
// @description    替换福步论坛帖子内容字体为微软雅黑,增大字号和文本间距,参考了http://greasyfork.icu/zh-CN/scripts/374194 的内容。
// @include        *:*
// @match          *://bbs.fobshanghai.com/*
// @author         naiba
// @homepage       https://blog.naibabiji.com
// @version        1.0
// ==/UserScript==
(function() {
    function addStyle(rules) {
        var styleElement = document.createElement('style');
        styleElement.type = 'text/css';
        document.getElementsByTagName('head')[0].appendChild(styleElement);
        styleElement.appendChild(document.createTextNode(rules));
    }

    addStyle('* {font-family : Segoe UI,"Microsoft Yahei",Arial,sans-serif;}');
    addStyle('.t_msgfont { line-height: 30px;font-size: 16px;}');
})();