Remove Ads from Orkut Pages

By Gautam Last update May 13, 2009 — Installed 739 times. Daily Installs: 1, 0, 3, 0, 0, 2, 2, 2, 0, 1, 0, 1, 1, 5, 2, 4, 1, 0, 1, 0, 1, 0, 0, 2, 0, 2, 1, 2, 2, 0, 0, 1
// ==UserScript==
// @name	Remove Ads from Orkut Pages
// @namespace	Gautam (OrkutPlus.net)
// @description	It removes Orkut ads from Orkut's pages.
// @include	http://*.orkut.*/*
// ==/UserScript==
var css = "#rhs_ads{display: none !important;}";
if (typeof GM_addStyle != "undefined") {
	GM_addStyle(css);
} else if (typeof addStyle != "undefined") {
	addStyle(css);
} else {
	var heads = document.getElementsByTagName("head");
	if (heads.length > 0) {
		var node = document.createElement("style");
		node.type = "text/css";
		node.appendChild(document.createTextNode(css));
		heads[0].appendChild(node);
 	}
}