stackoverflow.user.js - dotfiles - leot's dotfiles
 (HTM) hg clone https://bitbucket.org/iamleot/dotfiles
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       stackoverflow.user.js
       ---
            1 // ==UserScript==
            2 // @name stackoverflow
            3 // @description Remove footers from stackoverflow
            4 // @include http*://stackoverflow.com/*
            5 // ==/UserScript==
            6 
            7 ["#js-gdpr-consent-banner", ".js-dismissable-hero"].forEach(function(c) {
            8         document.querySelectorAll(c).forEach(function(e) {
            9                 e.remove();
           10         });
           11 });