Created
November 17, 2024 04:36
-
-
Save cmpadden/cb74400c1485d38ac0b6b00ace28c29d to your computer and use it in GitHub Desktop.
Snippet to follow people back on BlueSky Social
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if (!/.*\/profile\/.*\/followers/.test(document.URL)) { | |
| console.error( | |
| 'Make sure you are on your followers page!' | |
| ) | |
| } else { | |
| Array | |
| .from(document.getElementsByTagName('button')) | |
| .filter(el => el.innerText == 'Follow Back') | |
| .map(el => el.click()) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment