Weibo6 Styles

Change the style of nav panel of weibo v6

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @id             www.weibo.com-c53e41ab-a0ae-463a-82a4-f2584743a9f0@scriptish
// @name           Weibo6 Styles
// @version        0.2.2
// @namespace      me.fts.weibo
// @author         fanthos
// @description    Change the style of nav panel of weibo v6
// @include        http://*.weibo.com/*
// @include        http://weibo.com/*
// @run-at         document-end
// ==/UserScript==
// ==/UserScript==
(function(){

myproc=function(){
	obj1=document.getElementsByClassName("WB_left_nav")[0];
	obj2=document.getElementsByClassName("WB_main_c")[0];
	if(!obj1 || !obj2)
	{
		setTimeout(myproc, 10);
		return;
	}
	obj1.style.borderRadius="2px";
	obj1.style.textShadow="1px 0 #444, 0 1px #444, -1px 0 #444, 0 -1px #444";

}

myproc();

})();