modallpods.com Everything Gaming

30Oct/11Off

Remove Facebook Right Column, ads, and people you may know

This is a slightly modified version of the original script that works on Facebook (HTTPS). Requires Firefox and grease monkey.

// ==UserScript==
// @name           Remove Facebook Right-Column
// @version        0.2
// @author         Vaibhav Kanwal
// @namespace      http://programmingkid.com.com/
// @description    Increase Screen Estate by removing right column on Facebook.
// @include        http://facebook.com/*
// @include        http://*.facebook.com/*
// @include        https://*.facebook.com/*
// @include        https://facebook.com/*
// ==/UserScript==

(function() {
var css = "#rightCol{display: none;};";
if (typeof GM_addStyle != "undefined") {
	GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
	PRO_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);
	}
}
})();
Share on TwitterShare on TumblrSubmit to StumbleUponSave on DeliciousDigg ThisSubmit to redditShare on Myspace
Comments (0) Trackbacks (0)

Sorry, the comment form is closed at this time.

Trackbacks are disabled.