Skip to content

Instantly share code, notes, and snippets.

@gustafnk
Last active December 28, 2015 12:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gustafnk/7498318 to your computer and use it in GitHub Desktop.
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.
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