technologyreview-download.user.js - dotfiles - leot's dotfiles
 (HTM) hg clone https://bitbucket.org/iamleot/dotfiles
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       echnologyreview-download.user.js
       ---
            1 // ==UserScript==
            2 // @name technologyreview-download
            3 // @description Show just the article of The Download
            4 // @include http*://www.technologyreview.com/the-download/*/*
            5 // ==/UserScript==
            6 
            7 a = document.querySelector("article");
            8 if (a) {
            9         document.body.replaceWith(a);
           10 }