Greasy Fork is available in English.
OOooOOooOOOooOoo
当前为
// ==UserScript==
// @name 自定义字体为云林黑体并加阴影
// @namespace http://tampermonkey.net/
// @version 1.1
// @description OOooOOooOOOooOoo
// @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';
}
)();