Weibo6 Styles

Change the style of nav panel of weibo v6

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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();

})();