Guest User

Untitled

a guest
Mar 23rd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. setInterval(function() {
  2. window.scrollTo(0, document.body.scrollHeight);
  3. }, 2000);
  4.  
  5. // wait until scrolled to bottom completely
  6.  
  7. $('.ProfileCard-content').each(function() {
  8. var status = $(this)
  9. .find('.FollowStatus')
  10. .text();
  11. var unfollowButton = $(this).find('.user-actions-follow-button');
  12. // change 'follows you' according to your language environment
  13. if (status != 'follows you') {
  14. unfollowButton.click();
  15. }
  16. });
Add Comment
Please, Sign In to add comment