Shut Up And Digg

By Mike Sugarbaker Last update Jun 14, 2007 — Installed 605 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0
// ==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";
  }
})();