// ==UserScript== // @name 修正微信开发网站、w3cschool网站的字颜色太淡的问题 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match *://www.w3cschool.cn/* // @match *://developers.weixin.qq.com/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... const d=document.createDocumentFragment(); const s = document.createElement('style'); s.innerHTML='body, .content-intro{font-family:"Microsoft YaHei"}' d.appendChild(s); document.body.appendChild(d); })();