Rushnerd

Custom Emotes

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

  1. // ==UserScript==
  2. // @name Rushnerd
  3. // @namespace http://use.i.E.your.homepage/
  4. // @version 1.0
  5. // @description Custom Emotes
  6. // @match http://instasynch.com/rooms/rushnerd
  7. // @grant none
  8. // @copyright 2014
  9. // ==/UserScript==
  10.  
  11. // emote script for greasemonkey or tampermonkey.
  12. // emotes
  13. // by
  14. var script = document.createElement('script');
  15. script.setAttribute("type", "application/javascript");
  16. script.textContent = ' \
  17. setTimeout(function(){ \
  18. $codes["emotename"] = \'<img src="http://www.imgur.com/">\'; \
  19. $codes["coon"] = \'<img src="http://i.imgur.com/bKn7Tss.jpg">\'; \
  20. }, 1500);'
  21. ;
  22. document.body.appendChild(script);