Last active
September 21, 2016 10:00
-
-
Save numberoverzero/185d92788debe6e429fe to your computer and use it in GitHub Desktop.
Clean up the twitch homepage to get to the shit I care about faster
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 CleanTwitchHomepage | |
// @namespace https://numberoverzero.com | |
// @description clean up the twitch homepage to get to the shit I care about | |
// @include http://www.twitch.tv/ | |
// @include https://www.twitch.tv/ | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js | |
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js | |
// @version 2 | |
// @grant GM_addStyle | |
// ==/UserScript== | |
waitForKeyElements ("#carousel_and_background", function (jNode) { jNode.remove(); }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment