Advertisement
darkenvy

Remove chat commands in TPP

Feb 15th, 2014
670
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. Credit goes to: findow
  2.  
  3. 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.
  4.  
  5. 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)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement