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.