// Anything to help
//
// ==UserScript==
// @name           FF Lite
// @namespace      http://mattshaulis.com/gm/
// @description    Hide the likes and comments in the busy new friendfeed.
// @include        http://beta.friendfeed.com/*
// @include        https://beta.friendfeed.com/*
// ==/UserScript==

function addstylenode(selector, declaration) {
  var agent = navigator.userAgent.toLowerCase();
  var msie = (/msie/.test(agent)) && !(/opera/.test(agent)) && (/win/.test(agent));
  var node = document.createElement("style");
  node.setAttribute("type", "text/css");
  node.setAttribute("media", "screen");
  if (!msie) node.appendChild(document.createTextNode(selector + " {" + declaration + "}"));
  document.getElementsByTagName("head")[0].appendChild(node);
  if (msie && document.styleSheets && document.styleSheets.length > 0) {
    var msienode = document.styleSheets[document.styleSheets.length - 1];
    if (typeof(msienode.addRule) == "object") msienode.addRule(selector, declaration);
  }
};
addstylenode('.likes','display:none;');
addstylenode('.comments','display:none;');
addstylenode('.l_comment','display:none;');
