Weibo6 Styles

Change the style of nav panel of weibo v6

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

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

})();