Created
June 25, 2018 23:17
-
-
Save mucahit/2d0d4f876e839d2b60c4e0c2a9992b29 to your computer and use it in GitHub Desktop.
List of your Twitter unfollowers.
This file contains 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
let list = []; | |
$('.ProfileCard-content').each(function() { | |
const status = $(this) | |
.find('.FollowStatus') | |
.text(); | |
if (status != 'Follows you') { | |
list.push($(this).find(".u-linkComplex-target").text()) | |
} | |
}); | |
list.map(i => `http://twitter.com/${i}`).join("\n") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment