通过chrome油猴插件,添加新的脚本,把下面的脚本复制进去保存

// ==UserScript==
// @name         修改网页字体
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        http*://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    /*document.body.style.backgroundColor = '#00ee00'*/
    //document.body.style.cssText += 'sans-serif';
    document.body.style.fontFamily='LXGW WenKai';
    document.body.style.fontSize='100%';
    document.body.style.backgroundColor='#FFF';
    document.body.style.color='#444';
    // Your code here...
})();


标签: none

添加新评论