Reddit Follow Story Link

By Noah B Richards Last update Dec 15, 2008 — Installed 74 times. Daily Installs: 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, 0, 0

There are 1 previous version of this script.

// ==UserScript==
// @name           Reddit Deep Link Follow
// @namespace      http://userscripts.org/scripts/show/38684
// @include        http://www.reddit.com/*
// @author         Noah Richards
// @homepage       http://noahsmark.com
// ==/UserScript==

var e = document.getElementsByClassName("title")[1].children[0];

if (e.tagName == "A" && 
    window.location != e.href &&
    history.length <= 1)
{
    window.location = e.href;
}