// ==UserScript== // @name Remove medium Bar // @version 1 // @grant none // @include https://medium.com/* // @description Remove top and bottom bars in medium.com blogs // @namespace https://greasyfork.org/users/245076 // @downloadURL none // ==/UserScript== document.getElementsByClassName("metabar")[0].remove(); for (x of document.getElementsByClassName("js-stickyFooter")){x.remove();}