SG SmallComments

By Brandon Goldsworthy Last update Dec 11, 2005 — Installed 507 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name	SG SmallComments
// @namespace	http://www.suicidegirls.com/members/ThePants/
// @description	removes those stupid comment profiles
// @include http://*suicidegirls.com/*
// @exclude
// ==/UserScript==

(function() {

  //Grab the stuff we want to get rid of
  var xpath = "//div[@class='commentPic']";
  var xpath2 = "//div[@class='commentInfo']//p";
  var junk = document.evaluate(xpath, document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);

  if (junk.snapshotLength > 0){
    var t;
    for (i = 0; t = junk.snapshotItem(i); ++i) {
      t.style.display = "none";
    }
  }

  junk = document.evaluate(xpath2, document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);

  if (junk.snapshotLength > 0){
    for (i = 0; t = junk.snapshotItem(i); ++i) {
      t.style.display = "none";
    }
  }

})();