// ==UserScript== // @name 修正慕课网、知乎、微信开发、w3cschool、html中文网网站的字颜色太淡的问题 // @namespace http://tampermonkey.net/ // @version 0.1.2 // @description 修正一些网站的字颜色太淡看久了会伤眼睛的问题。为了更好的上网体验,不兼容低版本浏览器和IE浏览器。 // @author You // @match *://www.w3cschool.cn/* // @match *://developers.weixin.qq.com/* // @match *.zhihu.com/* // @match *://www.imooc.com/* // @match *://www.html.cn/* // @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); })();