JSTOR PDFer

By ms609 Last update Apr 21, 2008 — Installed 243 times. Daily Installs: 0, 0, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 1, 0, 2, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0
// ==UserScript==
// @name           JSTOR PDFer
// @namespace      jstor.org/
// @description    Takes you straight to the PDF version of JSTOR articles
// @include        *.jstor.org/view/*
// @exclude        *.pdf*
// @version        2.0 - new JSTOR interface, March 2008
// ==/UserScript==

if (document.getElementById("pdf")) {
	a = document.getElementById("pdf");
	window.location.href = "http://www.jstor.org/" + a.href.replace(/.*redirectUri=/, "");	
}