GM_xmlhttpRequest({
method : "GET",
url : atag.firstChild.nodeValue,
onload : function (responseDetails) {
link = responseDetails.responseText.replace(/^[\s\S]*(http:\/\/img\d+\.imageporter\.com\/[^"]+)[\s\S]*$/, "$1");
img = document.createElement("img");
img.src = link;
img.height = 200;
atag.replaceChild(img, atag.firstChild);
}
});