NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Imgur - hide promoted // @namespace https://blog.vicshih.com // @version 0.3 // @description Hide promoted posts in gallery view. // @author Victor Shih // @match https://imgur.com/ // @grant none // @updateURL https://openuserjs.org/meta/vshih/Imgur_-_hide_promoted.meta.js // @downloadURL https://openuserjs.org/install/vshih/Imgur_-_hide_promoted.user.js // @copyright 2021, vshih (https://openuserjs.org/users/vshih) // @license GPL-3.0-or-later // ==/UserScript== let intervalID = setInterval(function () { 'use strict'; document.getElementsByClassName('Post-item-external-ad').forEach(function (e) { let style = e.parentNode.parentNode.parentNode.style; if (style.visibility != 'hidden') { style.visibility = 'hidden'; } }); }, 1000);