// ==UserScript== // @name 修正知乎、微信开发、w3cschool网站的字颜色太淡的问题 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 修正一些网站的字颜色太淡看久了会伤眼睛的问题 // @author You // @match *://www.w3cschool.cn/* // @match *://developers.weixin.qq.com/* // @match *.zhihu.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); })();