Skip to content

Instantly share code, notes, and snippets.

@incompl
Last active December 10, 2015 16:48
Show Gist options
  • Save incompl/4463566 to your computer and use it in GitHub Desktop.
Save incompl/4463566 to your computer and use it in GitHub Desktop.
Bookmarklet to show following / follower ratio on a Twitter profile page.
javascript:(function() {$(".js-mini-profile-stats").find(".js-nav").eq(1).html("<strong>" + Math.round(Number($(".js-mini-profile-stats").find("strong").eq(1).text().replace(/,/g,"")) / Number($(".js-mini-profile-stats").find("strong").eq(2).text().replace(/,/g,"")) * 1000) / 1000 + "</strong> ratio");}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment