Ad remover for joyreactor.cc

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

От 08.09.2016. Виж последната версия.

// ==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/*
// @include http://*.reactor.cc/*
// @include https://*.reactor.cc/*
// @version 11
// @license MIT
// @run-at document-body
// @grant  none
// ==/UserScript==

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

// отключаем открытие всякого рекламного говна в новых окнах/вкладках
unsafeWindow.VisitWeb = null;