Colbert On Demand Video Exposer

By ET 2 Last update Oct 5, 2006 — Installed 392 times. Daily Installs: 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name	Colbert On Demand Video Exposer
// @description	Makes title a link to the FLV file on ColbertOnDemand.com
// @include	http://*colbertondemand.com/*
// ==/UserScript==

var mVids = document.getElementsByTagName("embed");
if (mVids && mVids.length > 0) {
	var vidURL = mVids[0].getAttribute("flashvars").match(/\?v=([^&]+)/)[1];
	document.getElementById("videoPlayer").innerHTML += '<br><a href="' + vidURL + '">Download</a>';
}