VitaliyAT / mail.ru adblock

// ==UserScript==
// @name         mail.ru adblock
// @namespace    mail.ru/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://*.mail.ru/*
// @grant        none
// @require      https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js
// ==/UserScript==

(function() {
    'use strict';

    $('[class^="news"]').hide();
    $('.yap-main').parent().parent().hide();
})();