kazatca / remove habr ads

// ==UserScript==
// @name         remove habr ads
// @namespace    https://habrahabr.ru/
// @version      0.3
// @description  remove habr ads
// @author       Me
// @match        http*://*habrahabr.ru/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    function removeBySelector(selector){
        var x;
        while((x = document.querySelector(selector))) {
            x.remove();
        }
    }

    function removeAll(){
        removeBySelector('.xyz_wrapper');
    }

    setInterval(removeAll, 1000);
})();