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();}
