Talk about anything here as long as it is not against the rules. Post count not affected.

Were these scripts useful to you?

Yes 4
80%
No 1
20%
Total votes : 5
Aug 30th, 2014, 1:31 pm
GreaseMonkey AutoDownload Scripts for zippyshare tusfiles datafilehost fileinz unlimitedzone

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

Aug 30th, 2014, 1:31 pm
Aug 30th, 2014, 3:48 pm
Kindly give us the way to use these scripts. Thanks.
Aug 30th, 2014, 3:48 pm

I love MOBILISM ! . Because, we are taken to real world in real time..
Aug 30th, 2014, 4:17 pm
Install Greasemonkey addon for FireFox or Tampermonkey for Chrome. Click New User Script, enter any name to get to code editor and replace the code.
Aug 30th, 2014, 4:17 pm