Remove Digg Bar

By Troy Thompson Last update Apr 4, 2009 — Installed 770 times. Daily Installs: 0, 1, 1, 0, 0, 0, 2, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0

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;