Advertisement
GamingTom

465792.user.js

Apr 18th, 2014
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name Hitbox Emotes
  3. // @namespace Hitbox Emotes
  4. // @description Allows the use of Twitch emotes on Hitbox.
  5. // @include *.hitbox.tv/*
  6. // @include *.speedrun.tv/*
  7. // @include *.twitch.tv/*
  8. // @icon http://i.imgur.com/fa1Kkku.png
  9. // @version 1.1.8
  10. // @updateURL https://gist.githubusercontent.com/GamingTom/11141717/raw/465792.user.js
  11. // @downloadURL https://gist.githubusercontent.com/GamingTom/11141717/raw/465792.user.js
  12. // ==/UserScript==
  13.  
  14. function hitbox_init()
  15. {
  16.     var script = document.createElement('script');
  17.     script.type = 'text/javascript';
  18.     script.src = "https://gist.githubusercontent.com/GamingTom/11142192/raw/emotes.js";
  19.     var head = document.getElementsByTagName('head')[0];
  20.     if(head) head.appendChild(script);
  21. }
  22.  
  23. hitbox_init();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement