nytimes.user.js - dotfiles - leot's dotfiles
 (HTM) hg clone https://bitbucket.org/iamleot/dotfiles
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       nytimes.user.js
       ---
            1 // ==UserScript==
            2 // @name nytimes
            3 // @description Remove top and bottom banners on The New York Times
            4 // @include http*://www.nytimes.com/*
            5 // ==/UserScript==
            6 
            7 ["#top-wrapper", "#bottom-wrapper"].forEach(function(c) {
            8         document.querySelectorAll(c).forEach(function(e) {
            9                 e.remove();
           10         });
           11 });