PAID: Chrome or Firefox userscript to auto-follow on poshmark.com

Scripts for tampermonkey or greasemonkey.

I need for it to do the following. When i goto a page such as the one listed below on poshmark.com
I’d like for the script to click all of the “follow” buttons that it can, when I push a button.
And of course not click buttons that have already been clicked. Since that would unfollow the user.
EXAMPLE page:
https://poshmark.com/closet/babygloves2shop

In other words not the below, which is the best I can do. Anyways shouldn’t be to hard. Lets hear some offers. =)

function click()
{
$(“a.btn.blue.auth-required”).click();
}

in the console. And of course not click buttons that have already been clicked. Since that would unfollow the user.

llort said

Whats the intent of this? Might have a better idea for automation

The intent is to simple follow lots of members of that website. -quickly Same as one might follow someone on say twitter.

It works, however it only follows once. refreshing page doesn’t help. It will follow again one time if I go to another page with followers. Anyway to maybe continue scanning the page every X seconds so I can continue scrolling down the page and following?

Thanks btw.