Last active
August 1, 2018 23:26
-
-
Save cdtweb/1e55efa5ef6906390cfa46dd1e9b759a to your computer and use it in GitHub Desktop.
JS unlike all tweets
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
// This may or may not work for you | |
// Browse to the 'likes' section for your profile | |
// Copy & paste into the browser console and hit enter | |
// Interval set to 10s to hopefully avoid rate limiting | |
// You may need to prove you are not a robot | |
setInterval(function() { | |
window.scrollTo(0, document.body.scrollHeight); | |
$('button.ProfileTweet-action--unfavorite').click(); | |
}, 10000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment