Digg - Disable "People Who Dugg This Also Dugg"

By koonkii Last update Jan 28, 2009 — Installed 122 times.
// ==UserScript==
// @name           Digg - Disable "People Who Dugg This Also Dugg"
// @namespace      http://www.koonkii.com
// @description    Removes the beta "People Who Dugg This Also Dugg" box above the comments.
// @include        http://digg.com/*
// @include        http://www.digg.com/*
// ==/UserScript==

var box = document.getElementById('PRCP');

if (box) {
	box.parentNode.removeChild(box);
}