Chrome Font Rendering Enhancer
// ==UserScript==
// @name Chrome 字体渲染增强
// @namespace none
// @description Chrome Font Rendering Enhancer
// @version 0.1.1
// @include *
// @grant none
// @run-at document-start
// ==/UserScript==
(function () {
'use strict';
var element = document.createElement('style');
element.innerHTML += '* {text-shadow: transparent 0px 0px 0px, rgba(0,0,0,1) 0px 0px 0px, rgba(0,0,0,1) 0px 0px 0px !important;}';
document.documentElement.appendChild(element);
}) ();