There are 2 previous versions of this script.
// ==UserScript==
// @name PixivImageEnlarger
// @namespace http://polog.org/
// @description Enlarge Pixiv Images
// @include http://www.pixiv.net/member_illust.php*
// ==/UserScript==
var visibilize_by_id = function(id){document.getElementById(id).style.overflow = 'visible'}
visibilize_by_id('pixiv');
visibilize_by_id('content2');
Array.some(
document.images,
function(e){
var matcher = null;
if(matcher = e.src.match(/^(.*?)_m\.(jpg|jpeg|gif|png)$/)){
e.src = matcher[1] + '.' + matcher[2];
return true;
}
return false;
}
);
