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