// ==UserScript==
// @name Shut Up And Digg
// @namespace http://gibberish.com/hacks/gm
// @description Consigns all traces of comments at Digg.com to the dustbin to which they belong
// @include *digg.com*
// ==/UserScript==
(function(){
var commentdroppings = document.getElementsByTagName("div");
for(var i = 0; i < commentdroppings.length; i++)
{
if(commentdroppings[i].getAttribute("class") == "comment")
commentdroppings[i].style.display = "none";
}
})();
