Advertisement
Guest User

Untitled

a guest
Nov 17th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Legacy Chat
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @include *.twitch.*
  6. // @require https://code.jquery.com/jquery-3.2.1.min.js
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. var hosturl = window.location.href;
  11. var chan = hosturl.split("/");
  12. setTimeout(function() { javascript:$(".chat__pane").html('<embed src="https://www.twitch.tv/'+chan[chan.length-1]+'/chat" class="full-height block flex-grow-0 flex-shrink-0 relative"></embed>'); },50);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement