Hello Everyone, I just can not figure this out. I was using this script for a year and after an update I'm lost. It seems they may have added some auth method I am not aware of. Previously the script would simulate button clicks on all the "follow" btns. HELP -------------------------------------------------- // ==UserScript== // @Name poshmark auto-follower // @namespace poshmark_follower // @include https://poshmark.com/user/*/followers // @VeRSioN 1 // @Grant none // ==/UserScript== function followEveryone () { $('a[track_action="follow"]:visible').click(); } (function($) { var origAppend = $.fn.append; $.fn.append = function () { return origAppend.apply(this, arguments).trigger("append"); }; ------------------------------------------------------------