Hide Twitter Follower Count

By mogrify Last update Jun 25, 2008 — Installed 100 times. Daily Installs: 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0
// ==UserScript==
// @name           Hide Twitter Follower Count
// @namespace      mogrify
// @description    Don't want to see your follower count? Don't.
// @include        http://twitter.com/*
// ==/UserScript==

var span = document.getElementById('follower_count')

if (span) {
  span.innerHTML='∞';
}