NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name emerics yobit
// @namespace http://tampermonkey.net/
// @version 0.1
// @description emerics yori!
// @author emerics yori
// @license MIT
// @match https://yobit.net/en/airdrop/make/checking/
// @include https://yobit.net/en/airdrop/make/checking/
// @grant none
// ==/UserScript==
(function () {
'use strict';
// alert('ola');
setInterval(seguir, 1);
// alert('call');
function seguir() {
// alert('enter');
var claimBtn = document.getElementsByClassName('editopt bgreen')[0];
alert(claimBtn.textContent);
if (!claimBtn.disabled) {
//claimBtn.click();
setInterval(seguir, 400000);
}
else {
console.log('Element:' + claimBtn.textContent)
console.log('Claim is not available yet!')
}
}
})();