NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name LiteKing Faucet Clicker // @namespace https://liteking.io/?ref=joker7778 // @version 1.0 // @source https://photolessons.org/ // @description https://liteking.io/?ref=joker7778 // @match https://liteking.io/* // @grant none // @license MIT // ==/UserScript== (function() { // задаем интервал времени между нажатиями (в миллисекундах) const intervalTime = 55000; // функция, которая будет нажимать на кнопку function clickButton() { const button = document.querySelector('#spin_wheel'); if (button) { button.click(); console.log("Clicked button."); } } // запускаем функцию нажатия на кнопку через заданный интервал времени setInterval(clickButton, intervalTime); })();