Created
March 13, 2010 04:08
-
-
Save erikvold/331097 to your computer and use it in GitHub Desktop.
This userscript removes the news reel from the Wall Street Journal.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Wall Street Journal Remove News Reel | |
// @namespace wsjRemoveNewsReel | |
// @include http://*.wsj.com/* | |
// @include http://wsj.com/* | |
// @include https://*.wsj.com/* | |
// @include https://wsj.com/* | |
// @match http://*.wsj.com/* | |
// @match http://wsj.com/* | |
// @match https://*.wsj.com/* | |
// @match https://wsj.com/* | |
// @datecreated 2010-03-12 | |
// @lastupdated 2010-03-12 | |
// @version 0.1 | |
// @author Erik Vergobbi Vold | |
// @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html | |
// @description This userscript removes the news reel from the Wall Street Journal. | |
// ==/UserScript== | |
(function(d){ | |
var newsReel = d.getElementById('newsReel'), | |
newsReelIFrame = d.getElementById('newsreeliframe'); | |
if(newsReel) newsReel.parentNode.removeChild(newsReel); | |
if(newsReelIFrame) newsReelIFrame.parentNode.removeChild(newsReelIFrame); | |
})(document); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment