Advertisement
Guest User

Mass remove botted followers

a guest
Mar 17th, 2018
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. var unList = [];
  2. var unList2 = [];
  3. alert("\n www.PsychoCoding.net\n This process may take some time.\n This tab will become unusable while running this script.\n Open a new tab to browse Twitter.");
  4. $('.ProfileCard').each(function(){
  5. if($(this).find('.ProfileCard-avatarImage').attr('src').indexOf("default_profile_images/default_profile") >= 0){ unList.push($(this)); }
  6. else if($(this).find('.ProfileCard-bg').attr('style').indexOf("background-color: #0084B4;") >= 0){unList2.push($(this)); }});
  7. unList.forEach(function(acc){
  8. if(($('.alert-messages .hidden'))){ $('.alert-messages').remove();}
  9. $(acc).find('.user-dropdown').trigger('click');
  10. $(acc).find('.block-text').find('.dropdown-link').trigger('click');
  11. $('.block-button').trigger('click');
  12. });
  13. unList2.forEach(function(acc){
  14. if(($('.alert-messages .hidden'))){ $('.alert-messages').remove();}
  15. $(acc).find('.user-dropdown').trigger('click');
  16. $(acc).find('.block-text').find('.dropdown-link').trigger('click');
  17. $('.block-button').trigger('click');
  18. });
  19. alert("> Done! " + unList.length + " egg and " + unList2.length + " default color accounts removed! \n> This page may take some additional time to become responsive again.");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement