Skip to content

Instantly share code, notes, and snippets.

@mumumu
Created March 20, 2010 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mumumu/338688 to your computer and use it in GitHub Desktop.
Save mumumu/338688 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Twitter Stats Blocker
// @varsion 1.00
// @description following, follower, listed の数を非表示にするスクリプト。follow, remove を気にしたくない人にお勧め(かもしれない)
// @include http://twitter.com/*
// @namespace http://www.mumumu.org/
// @author mumumuorg
// ==/UserScript==
(function(){
var following = document.getElementById('following_count_link');
following.style.display = 'none';
var followers = document.getElementById('follower_count_link');
followers.style.display = 'none';
var listed = document.getElementById('lists_count_link');
listed.style.display = 'none';
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment