// ==UserScript== // @name Auto Reload on Stake.com // @description auto claimer for reloads on stake, perfect for boring 10 minutes clicker simulator // based on other script from greasy (check description) // @version 2025.10.29 // @match https://stake.com/* // @match https://stake.com/?tab=rewards&modal=claimReload¤cy=* // @match https://stake.com/?tab=reload&modal=vip¤cy=* // @run-at document-idle // @namespace https://greasyfork.org/pl/users/1532005 // @downloadURL none // ==/UserScript== setInterval(function() { window.location.replace("https://stake.com/?tab=rewards&modal=claimReload¤cy=xrp") }, 25000) setInterval(function() { document.querySelectorAll("button[type='submit']")[0].click() }, 1500)