Skip to content

Instantly share code, notes, and snippets.

@cmpadden
Created November 17, 2024 04:36
Show Gist options
  • Select an option

  • Save cmpadden/cb74400c1485d38ac0b6b00ace28c29d to your computer and use it in GitHub Desktop.

Select an option

Save cmpadden/cb74400c1485d38ac0b6b00ace28c29d to your computer and use it in GitHub Desktop.
Snippet to follow people back on BlueSky Social
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