In this project, I will teach you how to extract your full follower list within seconds! (press --> to switch page) You can use this list to reward your followers in games, or compare detailed information over time! Something amazing: this is totally running on your browser, so it is not against the rule, it will only read information already loaded to your computer! Running on browser save you a lot of time from other webpage or app. And it doesn't cause extra traffic to Scratch servers.
All by me :D Here is the code, please read the program before use so you know what you are doing: let followers = []; document.querySelectorAll("li.user.thumb.item .title a").forEach(el => { followers.push(el.textContent.trim()); }); console.log("? Total followers: " + followers.length); console.log(followers.join("\n"));