浏览器设置全部网页为霞鹜文楷字体,其它字体也一样
通过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...
})();