NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Freebitco.in AutoRoll 2023 // @namespace // @version 1.0 // @description Freebitco.in AutoRoll 2023 // @author photolessons.org // @match https://freebitco.in/* // @grant none // @license MIT // ==/UserScript== (function () { function clickRunButton() { const runButton = document.querySelector('#free_play_form_button'); if (runButton) { runButton.click(); } } // Нажмите кнопку "Run" с задержкой в 5 секунд после загрузки страницы setTimeout(clickRunButton, 5000); // Затем ждите 5 минут (в миллисекундах) перед следующим нажатием setInterval(clickRunButton, 30 * 60 * 1000); })();