Facebook auto click view more comment

28 Sep 2022
0 Comments
javascript Donate
                
                    
let timePerAction = 1000; //0.1s
let timeClearInterval = 60000; //60s

let flatVnClick = setInterval(function () {
    let el = "Copy JS path";
    if (el) el.click();
}, timePerAction);

setTimeout(function () {
    clearInterval(flatVnClick);
}, timeClearInterval);
                
            

Leave a Reply

This site uses cookies to offer you a better browsing experience. By browsing this website, you agree to our use of cookies.