improvement of style; enhancement font style browser - css text-shadow;
当前为
/*<![CDATA[*//*
// ==UserScript==
// @name defPrefs
// @description improvement of style; enhancement font style browser - css text-shadow;
// @include *
// @namespace https://greasyfork.org/users/3561-lucianolll ; http://userscripts-mirror.org/scripts/show/358931 ; userscripts.org/users/46776
// @version 3
// ==/UserScript==**/
function adstyle(){
var doc=document,adstyle=doc.createElement('style'),
usercs="body{text-shadow:.3px .2px 0 rgb(0,0,0);}div{background-image:none!important;}";
adstyle.appendChild(doc.createTextNode(usercs));
doc.getElementsByTagName('head')[0].appendChild(adstyle);
}
document.addEventListener('load',adstyle(),false);
/*]]>*/