Greasy Fork is available in English.
修正一些网站的字颜色太淡看久了会伤眼睛的问题
当前为
// ==UserScript==
// @name 修正慕课网、知乎、微信开发、w3cschool、html中文网网站的字颜色太淡的问题
// @namespace http://tampermonkey.net/
// @version 0.1.1
// @description 修正一些网站的字颜色太淡看久了会伤眼睛的问题
// @author You
// @match *://www.w3cschool.cn/*
// @match *://developers.weixin.qq.com/*
// @match *.zhihu.com/*
// @match *://www.imooc.com/*
// @match *://www.html.cn/*
// @grant 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);
})();