Skip to content

Instantly share code, notes, and snippets.

@bostrot
Created December 6, 2018 14:11
Show Gist options
  • Save bostrot/9a68e23c926a2193372d7f88ac4ff947 to your computer and use it in GitHub Desktop.
Save bostrot/9a68e23c926a2193372d7f88ac4ff947 to your computer and use it in GitHub Desktop.
Chrome bookmarklet: Twitter follow all on this page.
javascript:(function() {var followBTNs = document.getElementsByClassName("follow-text");var follow = function() {for (var i = 0; i < followBTNs.length; i++) { followBTNs[i].click(); if (i === (followBTNs.length - 1)) { window.location.reload(); } } }; follow(); })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment