Digg - Disable "People Who Dugg This Also Dugg"

By koonkii Last update Jan 28, 2009 — Installed 84 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==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);
}