网易新闻办的还不错,不过受不了他的页面字体,真是难看,还是hard coding成“宋体”,真是莫名其妙。下面代码很简单,直接修改字体。不过这个script有个缺点:页面在全部装载完后才改变字体,由于163加载比较慢,所以可以看到字体刚开始是宋体,最后才改为雅黑。怎么样在装载前就修改CSS呢?照这里的帖子看来,Greasemonky是无法实现的。

// ==UserScript==
// @name           163beauty
// @namespace      fkpwolf.net
// @description    modify the face of 163.com
// @include        http://*.163.com/
// ==/UserScript==

document.body.style.fontFamily="serif";

捕获