webshots fullsize

By Yansky Last update Sep 1, 2008 — Installed 3,743 times.

There are 1 previous version of this script.

// ==UserScript==
// @name           webshots fullsize
// @namespace      userscripts.org
// @description    webshots fullsize
// @include        http://*.webshots.com/photo/fullsize/*
// ==/UserScript==

(function(){

	if(document.title.match('Webshots - Full Size Photo')){
	
		window.location = document.getElementById('fullsizeimageloader').getAttribute('flashvars').split('source=')[1];

	}

})();