Mixx_view-story

By Ashwyn Mittal Last update Jul 11, 2009 — Installed 97 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0

There are 13 previous versions of this script.

// Mixx_view-story, a Greasemonkey user script
// Version 1.0 - April, 2009
// Copyright 2009 Ashwyn Mittal 
// Released under the GPL version 3
// http://www.gnu.org/copyleft/gpl.html
//
// ==UserScript==
// @name           Mixx_view-story
// @namespace      Ashwyn
// @description    Mixx - When you click mixx.com links in Google reader or anywhere, It doesn't go to the story directly but goes to the comments page. From there you have to navigate to the story by clicking on the view story link. This script will take you to the view story link.
// @include        http://www.mixx.com/*
// ==/UserScript==

var e = document.getElementById("entry-title").children[0];

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