googlud / tubeoffline download

// ==UserScript==
// @name         tubeoffline download
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.tubeoffline.com/downloadFrom.php?*
// @require http://code.jquery.com/jquery-3.3.1.min.js
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    setTimeout(function () {
        $('#videoDownload a:contains(DOWNLOAD)').first().get(0).click();
    }, 5000)
})();