Skip Filebeam Timer

By La Larva Last update Aug 28, 2007 — Installed 164 times. Daily Installs: 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name         Skip Filebeam Timer
// @version      0.1 b
// @creator      larvitus@yahoo.com.ar
// @description  Skip Filebeam Timer ;)
// @namespace    http://userscripts.org/scripts/show/11761
// @updateURL    http://userscripts.org/scripts/source/11761.user.js
// @include      http://*filebeam.com/*
// @exclude        
// ==/UserScript==
(function() {

	var s_ini = 5; // First Body Script to Check

	function SkipFilebeamTimer(){
		try {
			sc = document.getElementsByTagName("body")[0].getElementsByTagName("script");		
			for(i=s_ini; i < 10; i++){
				var url = sc[i].text.match(/http\:\/\/filebeam\.com\/download2\.php\?a=[0-9a-z\&\=]+/gi);
				if(url){
					window.location = url;
					break;
				}
			}
			
		}
        catch(e) {};
	}
	
	SkipFilebeamTimer();

})();