Greasemonkey script to hide Facebook advertisements

Tired of the advertisements on Facebook asking you to try a new dating service or buy insurance, with Greasemonkey you can hide the advertisements on the right hand side with a simple userscript.

// ==UserScript==
// @name        removeFacebookAds
// @namespace   DT
// @description Remove facebook ads
// @include     https://www.facebook.com/*
// @include http://www.facebook.com/*
// @version     1
// @grant       GM_addStyle
// ==/UserScript==

GM_addStyle(".ego_column { display: none;}");

Just install the userscript as normal and then enable it on the Facebook site.

Last updated: 03/05/2013