Filefront - Custom flash player

By Zuo Last update Aug 30, 2008 — Installed 140 times. Daily Installs: 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0
// ==UserScript==
// @name           Filefront - Custom flash player
// @namespace      Filefront - Custom flash player
// @description    Replaces the old horrible video player! Eww..
// @include        *filefront.com*
// ==/UserScript==

// Global player options
var _allowfullscreen = "true";
var _width = "480";
var _height = "390";

// Get page html
var html = document.getElementsByTagName('html')[0].innerHTML;

// Get video id
function _getID() {
	var id = html.match("so\.addVariable\((.*)\)\;");
	if(id && id[2]) {
		id = id[2] + "";
		var vid = id.match("'(.*)'");
		vid = vid[1];
		return vid;
	}
	return;
}

// Edit video source if a video id is available
if(_getID()) {
	for(i=0;i<document.getElementsByTagName('div').length;i++) {
		var div = document.getElementsByTagName('div')[i];
		var div_id = div.id;
		var div_html = div.innerHTML;
		if(div_id=="videoHolder") {
			if(div_html) {
				var id = escape("http://videoplayer.filefront.com/v.b?v=" + _getID());
				var flash = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+_width+'" height="'+_height+'" id="youtubevideo" align="middle"><param name="movie" value="http://vladix.googlepages.com/video.swf" /><param name="play" value="true" /><param name="menu" value="false" /><param name="quality" value="best" /><param name="scale" value="exactfit" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#FFFFFF" /><param name="devicefont" value="true" /><param name="seamlesstabbing" value="true" /><param name="swliveconnect" value="true" /><param name="allowfullscreen" value="'+_allowfullscreen+'" /><param name="allowscriptaccess" value="always" /><param name="allownetworking" value="all" /><param name="flashvars" value="v='+id+'" /><!--[if !IE]>--><object type="application/x-shockwave-flash" data="http://vladix.googlepages.com/video.swf" width="'+_width+'" height="'+_height+'" align="middle"><param name="play" value="true" /><param name="menu" value="false" /><param name="quality" value="best" /><param name="scale" value="exactfit" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#FFFFFF" /><param name="devicefont" value="true" /><param name="seamlesstabbing" value="true" /><param name="swliveconnect" value="true" /><param name="allowfullscreen" value="'+_allowfullscreen+'" /><param name="allowscriptaccess" value="always" /><param name="allownetworking" value="all" /><param name="flashvars" value="url='+id+'" /><!--<![endif]--><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a><!--[if !IE]>--></object><!--<![endif]--></object>';
				div.innerHTML = flash;
			}
		}
	}
}