// ==UserScript== // @name Ad remover 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 1 // @grant none // @downloadURL none // ==/UserScript== window.addEventListener('load', function () { var el = document.querySelector('div a[href^="/donate"]'), parent; if (el && (parent = el.parentElement) && parent.parentElement) { parent.parentElement.remove(); } });