修正微信开发网站、w3cschool网站的字颜色太淡的问题

try to take over the world!

目前为 2020-03-02 提交的版本。查看 最新版本

// ==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
// ==/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);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址