Del.icio.us hide friend tags

By Theron Parlin Last update Apr 6, 2007 — Installed 142 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name           Del.icio.us Hide Friend Tags
// @namespace      http://e5media.com
// @description    Hides tags that start with "for:" from your tag cloud
// @include        http://del.icio.us/*
// ==/UserScript==


var mytags = document.getElementsByTagName('a')

if (mytags) {
  for (tag in mytags) {
    if (mytags[tag].toString().search(/for:/) != -1) {
      mytags[tag].style.display='none';
    }
  }
}