自定义字体为云林黑体并加阴影

效果比较满意了

// ==UserScript==
// @name         自定义字体为云林黑体并加阴影
// @namespace    http://tampermonkey.net/
// @version      1.2.1
// @description  效果比较满意了
// @subaobao_ok
// @match        *://*/*
// @grant        GM_addStyle
// @run-at       document-idle
// ==/UserScript==

(
    function()
    {
    'use strict';
    GM_addStyle("body,input,button,select,textarea{font:12px'云林黑体'!important;}");
    document.getElementsByTagName('body')[0].style.textShadow = '0.03em 0.03em 0.03em #666666';
    }
)();