/*
* @title ページ内の画像一覧(クリックでリンク先に差し替える)
* @include http://*
* @license MIT License
* @require
*/
(function(images) {
d = window.open().document;
for (i = 0; i < images.length; ++i) {
x = is[i];
if (x.height < 100) continue; // なんとなくアイコン類を除外
var onclick = ((p = x.parentElement) && ('' + p.href).match(/(jpg|png|gif)$/i)) ? `this.src='${p.href}'` : '';
d.write(`<img onclick="${onclick}" style="max-width:100%" src="${x.src}"> `)
}
})(document.getElementsByTagName('img'))