Skip to content

Instantly share code, notes, and snippets.

@issa-tseng
Created June 12, 2012 03:46
Show Gist options
  • Save issa-tseng/2914786 to your computer and use it in GitHub Desktop.
Save issa-tseng/2914786 to your computer and use it in GitHub Desktop.
Nuke springgreen from Twitch
// ==UserScript==
// @version 1.0
// @match http://twitch.tv/*
// @match http://www.twitch.tv/*
// ==/UserScript==
(function()
{
var $chatList = jQuery('#chat_line_list');
$chatList.bind('DOMNodeInserted', function()
{
var $last = $chatList.children(':last-child').find('.nick, .chat_line');
if ($last.css('color') == 'rgb(0, 255, 127)')
$last.css('color', 'black');
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment