webshots fullsize

By Yansky Last update Sep 1, 2008 — Installed 2,007 times. Daily Installs: 2, 5, 2, 8, 7, 6, 6, 0, 6, 3, 2, 4, 4, 4, 2, 3, 2, 3, 3, 0, 0, 2, 4, 2, 2, 2, 9, 8, 0, 3, 6, 2

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];

	}

})();