Greasy Fork is available in English.
Removes yellow banner with an offer to disable AdBlock on joyreactor.cc
当前为
// ==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://*.reactor.cc/*
// @include https://*.reactor.cc/*
// @version 7
// @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;