Add-Art is a firefox plugin that would replace banner ad’s with some art. However lately, it’s become an embarrassment to see such images being called as art, see Image below.

addArt

I keep checking Cricinfo at work to stay abreast with the scores, hence I had to do something about this. The good old GreaseMonkey came to the rescue, and with the following simple script, we can avoid Add-Art’s so called art images.

//
// ==UserScript==
// @name          Remove Add Art Images
// @namespace     Rushi
// @description   Remove Add Art Images
// @include       *.*
// ==/UserScript==
var allDivs = document.getElementsByTagName('div');
for(var i=0;i<allDivs.length;i++){
	if(allDivs[i].title == 'Replaced by Add-Art'){
		allDivs[i].style.visibility='hidden';
	}
}

Here is the screenshot after enabling the GreaseMonkey Script:
addArt_removed

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes:

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>