/*
* @title サムネをリンク先の画像で置き換える
* @include http://*
* @license MIT License
* @javascript_url
*/
(function(images) {
for (i = 0; i < images.length; ++i) {
img = images[i];
if ((link = img.parentElement) && link.href.match(/(jpg|png|gif)$/i))
img.src = link.href;
}
})(document.querySelector('a[href] > img'))