Remove chat commands in TPP

Credit goes to: findow

To remove chat commands in chrome on twitch, right click the white back window and select "inspect element", and then go over to the "console" tab and enter the following.

setInterval(function(){$('#chat_line_list li').each(function(){ var a = $(this); var t=$.trim(a.text().split(':')[1]); if (t == 'up' || t == 'down' || t == 'left' || t == 'right' || t == 'a' || t == 'b' || t == 'start') { a.hide(); }})}, 500)

No comments:

Post a Comment