medium.user.js - dotfiles - leot's dotfiles
 (HTM) hg clone https://bitbucket.org/iamleot/dotfiles
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       medium.user.js
       ---
            1 // ==UserScript==
            2 // @name medium
            3 // @description Remove bar and bottom banner on Medium
            4 // @include http*://medium.com/*
            5 // @include http*://hackernoon.com/*
            6 // ==/UserScript==
            7 
            8 ["div.metabar", "div.u-bottom0"].forEach(function(c) {
            9         document.querySelectorAll(c).forEach(function(e) {
           10                 e.remove();
           11         });
           12 });