// Paul Crovella's HWX Scripts
// 
// ==UserScript==
// @name           Paul Crovella's HWX Scripts - Inventory Item Links Fix
// @namespace	http://highwire.stanford.edu/~crovella/gm/
// @description	Removes "pretty" formatting from inventory item links to view them directly
// @include        https://production.highwire.org/cgi/pereport*
// @include        http://production.highwire.org:4040/cgi/pereport*
// ==/UserScript==

var links = document.getElementsByTagName("a");
for (var i=0; i < links.length; i++) {
    var att = links[i].getAttribute("href");
    if (att && att.match(/&format=pretty/))
    {
        links[i].setAttribute("href", att.replace(/&format=pretty/, ""));
    }
} 
