Old Reddit Adblock

Block ads on Old Reddit

// ==UserScript==
// @name         Old Reddit Adblock
// @namespace    https://github.com/AbdurazaaqMohammed
// @version      1.0.2
// @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/*
// @match        https://np.reddit.com/*
// @license      The Unlicense
// @grant        none
// @run-at       document-start
// ==/UserScript==

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