technologyreview.user.js - dotfiles - leot's dotfiles
 (HTM) hg clone https://bitbucket.org/iamleot/dotfiles
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       echnologyreview.user.js
       ---
            1 // ==UserScript==
            2 // @name technologyreview
            3 // @description Remove the counter at the bottom of the page
            4 // @include http*://www.technologyreview.com/s/*
            5 // ==/UserScript==
            6 
            7 e = document.querySelector("div.meter");
            8 if (e) {
            9         e.remove();
           10 }