Stylishで作ってみた。

 背景の色が目に優しくなかったり、異様に小さい文字サイズを指定してくれたり、その他もろもろ見てて目がちらちらするサイト、それとリンクがわかりにくいサイトには、全部このスタイルを強制適用することにした。

* {
	font-family: sans-serif !important;
	line-height: 1.4 !important;
	background-color: #ffeedd !important;
	color: #000000 !important;
}
h1, h2, h3, h4, h5, h6, p, ul, ol, dir, menu, div, dt, dd, address, blockquote, pre, br, hr {
	display: block !important;
}
b, strong, i, em, cite, var, tt, code, kbd, samp, img, span {
	display: inline !important;
}
a:link {
	color: blue !important;
	text-decoration: underline !important;
}
a:visited {
	color: purple !important;
	text-decoration: underline !important;
}
a:active {
	color: red !important;
	text-decoration: underline !important;
}