SchuelerVZ - Yahoo! Werbung Entfernerin

By oezguen goecer Last update Dec 30, 2007 — Installed 1,176 times. Daily Installs: 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 2, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name           SchuelerVZ - Yahoo! Werbung Entfernerin
// @description    Entfernt die Scheiss Werbung 
// @include        http://*schuelervz.net/*
// ==/UserScript==

function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}
addGlobalStyle('div.yahoo_leftnav, #yahoo_hotspot_websearch, #yahoo_hotspot_groups {visibility:hidden!important; display:none!important;} #homelink {background:none!important;}');