Last active
December 10, 2015 16:48
-
-
Save incompl/4463566 to your computer and use it in GitHub Desktop.
Bookmarklet to show following / follower ratio on a Twitter profile page.
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
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