NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Yandex Mail No Ads
// @description Удаляет рекламу, проверялось 14.05.2021.
// @namespace http://tampermonkey.net/
// @version 0.1
// @author ZetsubouToshio
// @match https://mail.yandex.ru/*
// @icon https://mail.yandex.ru/u2709/favicon/ico/main-favicon.ico
// @grant none
// @copyright 2021, zetsuboutoshio (https://openuserjs.org/users/zetsuboutoshio)
// @license Apache-2.0
// @require http://code.jquery.com/jquery-3.3.1.min.js
// ==/UserScript==
(function () {
'use strict';
function hideAds() {
$("div[style='width: 100%;']:not(.mail-Layout)").hide()
$("div[style='position: relative; margin: 0px; display: flex; justify-content: center; align-items: center; overflow: hidden;']:not(.mail-Layout)").hide()
setTimeout(hideAds, 1000);
}
hideAds()
})();