Created
June 21, 2018 12:36
-
-
Save jonleopard/60cee8c1371299a7779e6704572b23e3 to your computer and use it in GitHub Desktop.
Twitter Like Delete
This file contains hidden or 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
| // For Broski | |
| // Log into Twitter on the web | |
| // open your Developer Console e.g. Developer -> Developer Tools -> Console | |
| // and paste in this code: | |
| var cnt=1; | |
| var interval = setInterval(clearFavs, 1500); | |
| function clearFavs() { | |
| cnt+=1; | |
| window.scrollTo(0,document.body.scrollHeight); | |
| if (cnt>5) { | |
| clearInterval(interval); | |
| $('.ProfileTweet-actionButtonUndo.ProfileTweet-action--unfavorite').click(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment