Last active
December 28, 2015 12:09
-
-
Save gustafnk/7498318 to your computer and use it in GitHub Desktop.
List all your twitter favorites - slow and dirty. You must be on your twitter favorites page. When done, do "Inspect Element" and copy the html tag, then paste it into a text editor and save.
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
var poll = function(){ | |
window.scrollTo(0, document.body.scrollHeight); | |
setTimeout(function(){ poll() }, 500); | |
}; | |
poll(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment