Mass Follow on twitter without using any app.

mass follow on twitter

A simple Javascript Script to Follow Twitter accounts without using any third party app and without giving your access to any app.

Sheikh Asif
.

let btns = document.querySelectorAll("[data-testid]")
let followBtns = Array.from(btns).filter(btn => {
    return btn.getAttribute('data-testid').includes('follow')
})

for (let i = 1; i <= followBtns.length; i++) {
    setTimeout(() => {
        followBtns[i - 1].click()
    }, 1000 * i);
}

.