del.icio.us Ad Killer

By pwlin Last update Aug 18, 2010 — Installed 1,552 times.

There are 2 previous versions of this script.

// ==UserScript==
// @name	del.icio.us Ad Killer
// @namespace 	http://userscripts.org/scripts/show/5134
// @version	0.3.1 
// @description	Removes the ads on del.icio.us. 
// @include	http://del.icio.us/*
// @include  	http://www.delicious.com/*
// @exclude	http://del.icio.us/rss/*
// ==/UserScript==
(function(){
	try {
		var DelAds=document.evaluate("//div[@id='spns']",document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
		for(var i=0, k=DelAds.snapshotLength;i<k;i++){
			var DelAd=DelAds.snapshotItem(i);
			DelAd.parentNode.removeChild(DelAd);
		}
	} catch(e){}
})();