defPrefs

improvement of style; enhancement font style browser - css text-shadow;

2014/07/31のページです。最新版はこちら

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
/*<![CDATA[*//*
// ==UserScript==
// @name          defPrefs
// @description   improvement of style; enhancement font style browser - css text-shadow;
// @include       *
// @namespace     https://greatest.deepsurf.us/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);

/*]]>*/