Old Reddit Adblock

Block ads on Old Reddit

// ==UserScript==
// @name         Old Reddit Adblock
// @namespace    https://github.com/AbdurazaaqMohammed
// @version      1.0
// @description  Block ads on Old Reddit
// @author       Abdurazaaq Mohammed
// @homepage     https://github.com/AbdurazaaqMohammed/userscripts
// @supportURL   https://github.com/AbdurazaaqMohammed/userscripts/issues
// @match        https://old.reddit.com/*
// @license      The Unlicense
// @match        https://np.reddit.com/*
// @grant        none
// @run-at       document-start
// ==/UserScript==

document.head.appendChild(document.createElement('style')).innerHTML = 'div[class*="promotedlink"] { display: none !important; }';