// ==UserScript== // @name 自定义字体为云林黑体并加阴影 // @namespace http://tampermonkey.net/ // @version 1.2 // @description 效果比较满意了 // @subaobao_ok // @match *://*/* // @grant GM_addStyle // @run-at document-idle // @downloadURL none // ==/UserScript== ( function() { 'use strict'; GM_addStyle("body,input,button,select,textarea{'云林黑体'!important;}"); document.getElementsByTagName('body')[0].style.textShadow = '0.03em 0.03em 0.03em #666666'; } )();