Lynda MOV Downloader

By Marcell Spies Last update Oct 18, 2007 — Installed 1,638 times. Daily Installs: 0, 0, 1, 5, 3, 0, 1, 2, 3, 2, 3, 0, 0, 2, 0, 1, 1, 5, 0, 0, 3, 0, 0, 0, 0, 1, 3, 3, 0, 4, 2
// ==UserScript==
// @name           Lynda MOV Downloader
// @namespace      http://www.nohomepageyet.de
// @description    Downloads MOV files from Lynda.com
// @include        http://movielibrary.lynda.com/html/player/*
// ==/UserScript==

GM_registerMenuCommand('Download MOV file', downloadLyndaMovie);

function downloadLyndaMovie()
{
	var movieObject = document.getElementById('xFiles');
	var moviePath = '';
	
	for(var i=0; i<movieObject.childNodes.length; i++)
	{
		if(movieObject.childNodes[i].name == "src")
		{
			moviePath = movieObject.childNodes[i].value;
			break;
		}
	}

	window.open(moviePath);
}