Ad remover for joyreactor.cc

Removes yellow banner with an offer to disable AdBlock on joyreactor.cc

Version vom 20.04.2016. Aktuellste Version

// ==UserScript==
// @name        Ad remover for joyreactor.cc
// @description Removes yellow banner with an offer to disable AdBlock on joyreactor.cc
// @description:ru Убирает желтую плашку с предложением отключить AdBlock на joyreactor.cc
// @namespace   joyreactor_cc
// @include     http://joyreactor.cc/*
// @include     https://joyreactor.cc/*
// @version     6
// @license     MIT
// @grant       none
// ==/UserScript==

var prependOld = jQuery.fn.prepend;
jQuery.fn.prepend = function (str) {
    if (typeof str == 'string' && str.indexOf('/donate') != -1) {
        return;
    }
    prependOld.apply(this, arguments);
}

window.VisitWeb = null;