Greasy Fork

妖火网插件

设置样式让网页看起来更舒服

// ==UserScript==
// @name         妖火网插件
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  设置样式让网页看起来更舒服
// @author       Luolix
// @match        *://yaohuo.me/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @connect      yaohuo.me
// @license      GPL-3.0-or-later
// ==/UserScript==

(function() {
    'use strict';
    document.body.style.fontWeight = '800'
    document.body.style.fontFamily = '微软雅黑'
})();