// ==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 // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.body.style.fontWeight = '800' document.body.style.fontFamily = '微软雅黑' })();