Digg Deep

By silver110525@yahoo.com Last update Mar 16, 2007 — Installed 1,302 times. Daily Installs: 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1
// ==UserScript==
// @name Digg Deep
// @description Navigate directly to the interesting link on a Digg page.
// @include http://digg.com/*
// ==/UserScript==

var e = document.getElementById("title").firstChild;
var url;
if (e.tagName == "A") url = document.getElementById("title").firstChild.href;
window.location.replace(url);