// ==UserScript==// @name		Full Attachments// @description	Converts thumbnails of images to full versions// @include		*// @namespace	http://www.orangeninja.com/// ==/UserScript==(function(){	var links = document.getElementsByTagName('a');	for(var i=0, link; link = links[i]; i++){		var href = link.getAttribute('href');		var img = link.firstChild;		try{			if(href.indexOf('attachment.php') != -1 && img.getAttribute('src').indexOf('thumb') != -1){				img.setAttribute('src', href);			}		}catch(e){}	}})();