GreaseMonkey AutoDownload Scripts for zippyshare tusfiles datafilehost fileinz unlimitedzone
Tusfiles
https://monkeyguts.com/code.php?nav=code&id=271
Zippyshare
DataFileHost
Fileinz
UnlimitedZone
RGhost
Tusfiles
https://monkeyguts.com/code.php?nav=code&id=271
Zippyshare
Code: Select all
// ==UserScript==
// @name Zippyshare Auto Download
// @namespace Zippyshare Auto Download
// @description Automatically starts downloads hosted by Zippyshare
// @include http://www*.zippyshare.com/*
// @version 0.0.2
// ==/UserScript==
$(document).ready(setTimeout(function(){
var DL = $( "a[id=downloadB]" );
if ( DL[0] != null ) DL[0].click();
},1000));
DataFileHost
Code: Select all
// ==UserScript==
// @name DataFileHost Auto Download
// @namespace DataFileHost Auto Download
// @description DataFileHost Auto Download
// @include http://www.datafilehost.com/*
// @version 1
// @grant none
// ==/UserScript==
var c = $( "input[type='checkbox']" );
var evt = document.createEvent("MouseEvents");
evt.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
c[0].dispatchEvent(evt);
var img = document.getElementsByTagName('img');
for ( i=0; i < img.length; i++ ) {
if ( img[i].alt == "Download" ) {
img[0].dispatchEvent(evt);
break;
}
}
Fileinz
Code: Select all
// ==UserScript==
// @name Fileinz Auto Download
// @namespace Fileinz Auto Download
// @description Fileinz Auto Download
// @include http://fileinz.com/*
// @version 1
// @grant none
// ==/UserScript==
var d= $( "input[name='method_free'][value='Free Download']" );
if(d != null) d.click();
UnlimitedZone
Code: Select all
// ==UserScript==
// @name UnlimitedZone Auto Download
// @namespace UnlimitedZone Auto Download
// @description UnlimitedZone Auto Download
// @include (Closed Filehost) https://unlimitzone.com/*
// @version 1
// @grant none
// ==/UserScript==
var btn_free = $( "input[name='method_free'][class='btn_bk']" );
if ( btn_free[0] != null ) btn_free[0].click();
var chk = $( "input[id='dlm']" );
if ( chk[0] != null ) {
chk[0].checked = false;
var d = $( "div.btn_down > a" );
d.click();
}
RGhost
Code: Select all
// ==UserScript==
// @name RGhost Auto Download
// @namespace RGhost Auto Download
// @description RGhost Auto Download
// @include http://rghost.net/*
// @version 1
// @grant none
// ==/UserScript==
var d = $( "#content > section[id='actions'] > a[class~='download']" );
if ( d[0] != null ) d[0].click();