// ==UserScript== // @name remove reddit ads // @namespace https://www.reddit.com/ // @version 0.4 // @description remove reddit post ads // @author cloudwalkerfree@gmail.com // @include https://www.reddit.com/ // @include https://www.reddit.com/r/* // @grant none // @downloadURL none // ==/UserScript== const rere =() => {Array.from(document.getElementsByClassName('scrollerItem')).forEach( i => i.childNodes[0].getAttribute('style').indexOf('rgb') != -1 ? i.remove() & console.log('[REMOVED ADS] -> ' + i.childNodes[1].textContent) :null)} document.addEventListener("DOMNodeInserted", rere)