NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==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); })();