// ==UserScript==
// @name           dA Link Gateway Stripper (and Icon)
// @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(/#$/,'');
		link.innerHTML+=' <img src="data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAXklEQVR4nK2QwQ3AMAwCs1N28k7eiZ3oI7IcU6efBomXOREyxhUZ2brTdNAcVB2BaJgCVcDAalJLXsB+iLAjm1pAwzHWHD3gWMcMg/ERMjKfFOHVqMEGqEM/gKP/6gE2f+h+3kvjIwAAAABJRU5ErkJggg==" title="External Link" alt="External Link" />';
	}
});
