Remove Digg Bar

By Troy Thompson Last update Apr 4, 2009 — Installed 1,556 times.

There are 1 previous version of this script.

// ==UserScript==
// @name           Remove Digg Bar
// @namespace      troynt+digg-bar-remover@gmail.com
// @description    Removes Digg Bar
// @include        http://digg.com/*
// ==/UserScript==
var iframe = document.getElementsByTagName('iframe');
if( iframe.length == 1 && iframe[0].name == 'diggiFrame' )
	window.location.href = iframe[0].src;