// ==UserScript== // @name remove_stackoverflow_cookie_popup // @description Remove StackOverflow cookie popup. // @version 0.1.1 // @match https://*.stackoverflow.com/* // @author ideallemming // @license MIT // @namespace https://greasyfork.org/users/1024482 // @downloadURL none // ==/UserScript== for (let popup of document.getElementsByClassName("js-consent-banner")) { popup.remove(); }