PixivImageEnlarger

By negipo Last update Nov 21, 2008 — Installed 263 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0

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;
    }
);