pootz / BigFile.to Alert to Download

// ==UserScript==
// @name        BigFile.to Alert to Download
// @namespace   pootz
// @description Alert When BigFile download link is ready to be downloaded
// @include     http*://*bigfile.to/file/*
// @version     1.0
// @history     -
// @require     https://gist.githubusercontent.com/BrockA/2625891/raw/9c97aa67ff9c5d56be34a55ad6c18a314e5eb548/waitForKeyElements.js
// @updateURL   https://openuserjs.org/meta/pootz/BigFile.to_Alert_to_Download.meta.js
// @downloadURL https://openuserjs.org/install/pootz/BigFile.to_Alert_to_Download.user.js
// ==/UserScript==


waitForKeyElements("#recaptcha_response_field", captchaBox, true);

function captchaBox(jNode){
    alert("Captcha is waiting");
    setTimeout(function(){ jNode.focus(); }, 2000);
}