remove_stackexchange_cookie_popup

Remove StackOverflow cookie popup (applies to all StackExchange websites).

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         remove_stackexchange_cookie_popup
// @description  Remove StackOverflow cookie popup (applies to all StackExchange websites).
// @version      0.2.0
// @match        https://*.stackoverflow.com/*
// @match        https://*.stackexchange.com/*
// @match        https://*.askubuntu.com/*
// @match        https://*.superuser.com/*
// @match        https://*.serverfault.com/*
// @author       ideallemming
// @license      MIT
// @namespace https://greasyfork.org/users/1024482
// ==/UserScript==

for (let popup of document.getElementsByClassName("js-consent-banner")) { popup.remove(); }