NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Yandex Adverts Remover Beta // @description Removes annoying yandex.ru animated and context adverts // @author Galchonok // @include http://mail.yandex.ru/* // @include https://mail.yandex.ru/* // @version 0.1 // @copyright 2014, Golanova Galina // @oujs:author galch24 // ==/UserScript== //Yandex mail have no Parent Element To animated and context adverts var removeYaAdverts = function(){ //Yandex Adverts document.getElementById('js-main-rtb').style.visibility = 'hidden'; document.getElementById('js-main-rtb').style.display = 'none'; }; removeYaAdverts();