DivxDen.com Download link

By Aaron Russell Last update Sep 28, 2009 — Installed 546 times. Daily Installs: 8, 2, 0, 4, 0, 4, 2, 3, 5, 4, 2, 5, 9, 4, 6, 6, 4, 9, 5, 2, 1, 3, 11, 7, 5, 5, 15, 2, 7, 4, 11, 11

There are 6 previous versions of this script.

// ==UserScript==
// @name           DivxDen.com Download link
// @namespace      Aaron Russell
// @include        http://www.divxden.com/*/*
// ==/UserScript==

if(document.forms[0]){
document.forms[0].onsubmit='return true;';
document.forms[0].submit();
}
if(document.getElementById('cpa')){
document.getElementById('cpa').innerHTML="";
var download = document.createElement('a');
download.setAttribute('href', document.getElementById('np_vid').src);
download.setAttribute('id', 'download');
var heading1 = document.createElement('h1');
var sometext = document.createTextNode("Download Video");
document.getElementById('cpa').appendChild(download);
document.getElementById('download').appendChild(heading1);
document.getElementById('download').firstChild.appendChild(sometext);
}
if(ADBRITE.INTERMISSION){
ADBRITE.INTERMISSION.hide_intermission();}