Advertisement
tmetcalfe89

Twitter Unlike All

Apr 30th, 2017
310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /* While on https://twitter.com/i/likes, unlikes all likes. Copy/paste to console (Ctrl+J on Chrome) and click enter. I'm not responsible for your use of this script. */
  2.  
  3. var i = 0;
  4.  
  5. function unlike() {
  6.   $('.js-actionFavorite')[i].click();
  7.   i+=2;
  8.   if(typeof($('.js-actionFavorite')[i]) !== 'undefined') {
  9.     setTimeout(unlike, 1000);
  10.   }
  11. }
  12.  
  13. unlike();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement