MediaFire

Auto Download MediaFire

// ==UserScript==
// @name        MediaFire
// @namespace   yanagiragi
// @include     http://www.mediafire.com/file/*
// @include     https://www.mediafire.com/file/*
// @version     2.0
// @grant       none
// @description Auto Download MediaFire
// ==/UserScript==
// if error occurs with closing windows, try config firefox by accessing about:config
var set;

(function() {
    'use strict';
    var dl = document.querySelector('.download_link .input').getAttribute('href');
    console.log(dl)
    location.replace(dl); // start download
    set = setInterval(closeWindows, 1000 * 5);
})();

function closeWindows(){
    window.close();
    clearInterval(set);
}