Anti-Buschfunk

By st3250a Last update May 6, 2009 — Installed 3,328 times. Daily Installs: 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0

There are 2 previous versions of this script.

// ==UserScript==
// @name           Anti-Buschfunk
// @namespace      Anti-Buschfunk
// @include        http://www.studivz.net/*
// @include        http://www.schuelervz.net/*
// @include        http://www.meinvz.net/*
// ==/UserScript==

addGlobalStyle = function(css)
{
  var head = document.getElementsByTagName('head')[0];
  if (!head)
    return;
  var style = document.createElement('style');
  style.type = 'text/css';
  style.appendChild(document.createTextNode(css));
  head.appendChild(style);
}

addGlobalStyle('#Mod-Feeds-Snipplet { display: none !important;}');