// TUMBLR-NOFOLLOWERS
// by Justin Koh
// justin@carboxymoron.com
// nerf.tumblr.com
//
// This version only hides the follower count on your primary tumblr.
//
// ==UserScript==
// @name           tumblr-nofollowers
// @namespace      http://carboxymoron.com/stuff/tumblr
// @description    Hide follower count in the Dashboard.
// @include        http://tumblr.com/dashboard
// @include        http://tumblr.com/dashboard/*
// @include        http://www.tumblr.com/dashboard
// @include        http://www.tumblr.com/dashboard/*
// @include        http://www.tumblr.com/*
// @author         Justin Koh
// ==/UserScript==

var rules = new Array();
var style;

function enableStyle(rules) {
   style = document.createElement('style');
   style.type = 'text/css';
   document.getElementsByTagName('head')[0].appendChild(style);
   for (var i = 0; i < rules.length; i++) {
      style.sheet.insertRule(rules[i], 0);
   }
}

rules[rules.length] = "#right_column .dashboard_nav_item ul.tumblelog_controls a[href='/followers'] { display:none; }";

enableStyle(rules);