// ==UserScript==
// @name           dA Link Gateway Stripper
// @namespace      Zikes
// @description    Removes the gateway redirect from journal links on dA
// @include        http://*deviantart.com*
// ==/UserScript==

Array.prototype.forEach.call(document.getElementsByTagName('a'),function(link){
	if(link.href.match('http://www.deviantart.com/users/outgoing?')){
		link.href=link.href.replace('http://www.deviantart.com/users/outgoing?','').replace(/#$/,'');
	}
});
