// Paul Crovella's HWX Scripts
// 
// ==UserScript==
// @name           Paul Crovella's HWX Scripts - Kill Targets
// @namespace	http://highwire.stanford.edu/~crovella/gm/
// @description	Removes targets from links
// @include        https://production.highwire.org/*
// @include        http://production.highwire.org:4040/*
// ==/UserScript==

var links = document.getElementsByTagName("a");
for (var i=0; i < links.length; i++) {
    links[i].removeAttribute("target");
} 
