/*

script to remove hatenabookmark users count from hatenarss

Original from http://www.ryo.com/ryo/files/simpleHatenaRSS.user.js

*/

// ==UserScript==
// @name          simleHatenaRSS
// @namespace     http://www.ryo.com/ryo/
// @description   Remove Hatena Bookmark users count from HatenaRSS
// @include       http://r.hatena.ne.jp/*
// ==/UserScript==

(function() {
	var links = document.getElementsByTagName('a');
	
	for (i = 0; i < links.length; i++) {
		if (links[i].className == 'users') {
			links[i].removeChild(links[i].firstChild);
		}
	}
})();

