Hitbox Emotes

Allows the use of Twitch emotes on Hitbox.

当前为 2014-08-07 提交的版本,查看 最新版本

  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. // ==/UserScript==
  11.  
  12. function hitbox_init()
  13. {
  14. var script = document.createElement('script');
  15. script.type = 'text/javascript';
  16. script.src = "https://gist.githubusercontent.com/GamingTom/11142192/raw/emotes.js";
  17. var head = document.getElementsByTagName('head')[0];
  18. if(head) head.appendChild(script);
  19. }
  20.  
  21. hitbox_init();