View difference between Paste ID: cByGTK3P and 747PACBh
SHOW: | | - or go back to the newest paste.
1
var dARemoveOutgoing = {
2
	ancs: document.getElementsByTagName("a"),
3
	action: function() {	
4
		for (i = 0; i < dARemoveOutgoing.ancs.length; i++) {
5
			dARemoveOutgoing.ancs[i].setAttribute("href", dARemoveOutgoing.ancs[i].getAttribute("href").replace(/http:\/\/www\.deviantart\.com\/users\/outgoing\?/, ""));
6
		}
7
	}
8
}
9
document.addEventListener("DOMContentLoaded", dARemoveOutgoing.action, false);