kazatca / no vk ads

// ==UserScript==
// @name         no vk ads
// @namespace    https://vk.com/
// @version      0.1
// @description  remove vk ads
// @author       Me
// @match        http*://*vk.com/*
// @grant        none
// ==/UserScript==

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

    function removeAll(){
        removeBySelector('#ads_left');
        removeBySelector('div[data-ad-view]');
    }

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