NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name xbtc // @namespace Munem2x // @version 1 // @description Auto click // @author Munem2x // @match http://xbtc.eu/crypto.php?cr=BTC // @icon http://xbtc.eu/xbtc_fav.png // @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js // ==/UserScript== $(document).ready(function(){ setInterval(function(){ if($('.gbut').val() == "Collect") { ClickOnButton(); } if($('.counnt').css('display') != 'none'){ Refresh(); } },10000); function ClickOnButton() { $('.gbut').mousedown(); $('.gbut').click(); $('.gbut').mouseup(); } function Refresh(){ location.reload(); } });