jacebenson / jace.pro

A blog about servicenow and other technology
https://jace.pro
20 stars 17 forks source link

post/2021-05-07-how-to-export-your-followers-from-twitter-right-now/ #248

Closed utterances-bot closed 3 years ago

utterances-bot commented 3 years ago

How to export your followers from Twitter right now

jace.pro

https://jace.pro/post/2021-05-07-how-to-export-your-followers-from-twitter-right-now/

robertheadley commented 3 years ago

What do you know. I have too many Twitter follows right now, so this is just what I need to do to export them all, and delete everything and start over... soon as I figure out how to unfollow all anyway.

Thanks.

jacebenson commented 3 years ago

Well, I'm glad it helped.

You could go to your following page (https://twitter.com/yourusername/following) and run this to open the dialog to make that easier

$$('[data-testid*="unfollow"]').forEach((element)=>{
  element.click();
  //this will close the dialog // tested
  //$$('[data-testid="confirmationSheetCancel"]')[0].click();
  //this will confirm you want to unfollow // not tested
  //$$('[data-testid="confirmationSheetConfirm"]')[0].click();
})