Last active
July 11, 2018 01:46
-
-
Save seungwonpark/4b794299306f56f2f7a9fea812643242 to your computer and use it in GitHub Desktop.
StackOverflow GDPR consent banner hider
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// hide annoying GDPR banner at stackoverflow / stackexchange | |
// add this script at tampermonkey | |
// ==UserScript== | |
// @name StackOverflow GDPR consent banner hider | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Hide GDPR consent banner | |
// @author Seungwon Park (veydpz) | |
// @match https://*.stackexchange.com/* | |
// @match https://stackoverflow.com/* | |
// @match https://askubuntu.com/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
var div = document.getElementById("js-gdpr-consent-banner"); | |
if (div) { | |
div.style.display = "none"; | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://git.io/fNfCP