Last active
July 5, 2017 17:57
-
-
Save ElijahLynn/75f75ef17592d31b4152175b31584ae1 to your computer and use it in GitHub Desktop.
Google News - 'Top Stories' Hider - Userscript
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 Google News - Top Stories Hider | |
// @namespace http://www.elijahlynn.net | |
// @version 0.1 | |
// @description Permanently hides the Top Stories section on Google News | |
// @author Elijah Lynn | |
// @match https://news.google.com/* | |
// @grant none | |
// @downloadURL https://gist.githubusercontent.com/ElijahLynn/75f75ef17592d31b4152175b31584ae1/raw | |
// @updateURL https://gist.githubusercontent.com/ElijahLynn/75f75ef17592d31b4152175b31584ae1/raw | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var topStories = document.querySelectorAll("[data-label='Top Stories']")[0]; | |
topStories.style.display = 'none'; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment