Rediff Mail Ad Remover

By Ashish Agnihotri Last update Feb 26, 2006 — Installed 501 times.
// ==UserScript==
// @name          Rediff Mail Ad Remover
// @description	  Removes ads from the free version of Rediff Mail (Ad at the top of the screen while reading the mail)
// @include       http://f1mail.rediff.com/*
// ==/UserScript==


tables = document.getElementsByTagName("TABLE");

tables[3].style.display = "none";

GM_log("RediffMail : Removed the AD");