Dailymotion Downloader

By xxbeanxx Last update Oct 27, 2009 — Installed 3,561 times. Daily Installs: 7, 17, 15, 19, 16, 16, 12, 12, 20, 16, 20, 9, 12, 12, 13, 15, 4, 11, 13, 12, 12, 7, 6, 12, 14, 13, 8, 13, 10, 8, 10, 9

There are 10 previous versions of this script.

// ==UserScript==
// @name           Dailymotion Downloader
// @namespace      http://userscripts.org/users/45791
// @description    Adds download links to the SD and HD versions of video to the header main menu
// @include        http://*dailymotion.com/*
// @require        http://code.jquery.com/jquery-latest.js
// ==/UserScript==
var flashVars = unescape($("#videoplayer").attr("flashvars"))
if (flashVars == "undefined") return

var lowResLink = flashVars.substring(
			flashVars.indexOf("video=") + 6,
			flashVars.indexOf("@", flashVars.indexOf("video=") + 6))
var hiResLink = flashVars.substring(
			flashVars.indexOf("spark-mini||") + 12,
			flashVars.indexOf("@", flashVars.indexOf("spark-mini||") + 12))

$(".header_main_menu")
	.append("<li><div class=\"dmco_separator\">|</div></li>")
	.append($("<li>").html($("<a>Download SD</a>").attr("href", lowResLink)))
	.append("<li><div class=\"dmco_separator\">|</div></li>")
	.append($("<li>").html($("<a>Download HD</a>").attr("href", hiResLink)))