Rushnerd

Custom Emotes

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

  1. // ==UserScript==
  2. // @name Rushnerd
  3. // @namespace http://use.i.E.your.homepage/
  4. // @version 1.5
  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["cod"] = \'<img src="http://i.imgur.com/Bo8EnVS.png">\'; \
  20. $codes["beer"] = \'<img src="http://i.imgur.com/PbjjZNH.jpg" width="60" height="60">\'; \
  21. $codes["reggie"] = \'<img src="http://i.imgur.com/6NTEerN.png" width="60" height="60">\'; \
  22. $codes["gabe"] = \'<img src="http://i.imgur.com/8Fl0LgE.png">\'; \
  23. $codes["lain"] = \'<img src="http://i.imgur.com/OiH6MLz.gif" width="60" height="60">\'; \
  24. $codes["high5"] = \'<img src="http://i.imgur.com/5HGqgOI.gif" width="60" height="60">\'; \
  25. $codes["happy"] = \'<img src="http://i.imgur.com/CFgU0Fg.jpg" width="60" height="60">\'; \
  26. $codes["coon"] = \'<img src="http://i.imgur.com/inPDtzG.jpg" width="60" height="60">\'; \
  27. $codes["sleep"] = \'<img src="http://i.imgur.com/6pesFxP.jpg" width="60" height="60">\'; \
  28. $codes["fat"] = \'<img src="http://i.imgur.com/XVn1OVl.png" width="60" height="60">\'; \
  29. $codes["coonface"] = \'<img src="http://i.imgur.com/lTk4T9p.jpg" width="60" height="60">\'; \
  30. $codes["fap"] = \'<img src="http://i.imgur.com/qdc64WS.jpg" width="60" height="60">\'; \
  31. $codes["kiss"] = \'<img src="http://i.imgur.com/mPJYIjD.jpg" width="60" height="60">\'; \
  32. $codes["grin"] = \'<img src="http://i.imgur.com/NOV18ZB.gif" width="60" height="60">\'; \
  33. $codes["computer"] = \'<img src="http://i.imgur.com/h0WHExY.gif" width="60" height="60">\'; \
  34. $codes["bearsuit"] = \'<img src="http://i.imgur.com/WvNRaEy.gif" width="60" height="60">\'; \
  35. $codes["sanic"] = \'<img src="http://i.imgur.com/jzyAnhX.png" width="60" height="60">\'; \
  36. $codes["mysides"] = \'<img src="http://i.imgur.com/U5bwIzm.png" width="60" height="60">\'; \
  37. $codes["annoy"] = \'<img src="http://i.imgur.com/oFvTMnF.jpg" width="60" height="60">\'; \
  38. $codes["brock"] = \'<img src="http://i.imgur.com/b6YCnEh.jpg" width="60" height="60">\'; \
  39. $codes["datass"] = \'<img src="http://i.imgur.com/WyL1dCR.png" width="60" height="60">\'; \
  40. $codes["furry"] = \'<img src="http://i.imgur.com/61TNGXO.jpg" width="60" height="60">\'; \
  41. $codes["umad"] = \'<img src="http://i.imgur.com/ev8HaOz.jpg" width="60" height="60">\'; \
  42. $codes["doge"] = \'<img src="http://i.imgur.com/iIcv9ot.jpg" width="60" height="60">\'; \
  43. $codes["bill"] = \'<img src="http://i.imgur.com/dXyz0WX.gif" width="60" height="60">\'; \
  44. $codes["usad"] = \'<img src="http://i.imgur.com/6TArzzc.jpg" width="60" height="60">\'; \
  45. $codes["roll"] = \'<img src="http://i.imgur.com/VUSUBRd.gif" width="60" height="60">\'; \
  46. $codes["eat"] = \'<img src="http://i.imgur.com/Ef5JYWO.gif" width="60" height="60">\'; \
  47. $codes["roll"] = \'<img src="http://i.imgur.com/VUSUBRd.gif" width="60" height="60">\'; \
  48. $codes["party"] = \'<img src="http://i.imgur.com/GLNQmF0.jpg" width="60" height="60">\'; \
  49. $codes["dance"] = \'<img src="http://i.imgur.com/0kSBnoU.gif" width="60" height="60">\'; \
  50. $codes["nom"] = \'<img src="http://i.imgur.com/Lx7I2t7.gif" width="60" height="60">\'; \
  51. $codes["daddycool"] = \'<img src="http://i.imgur.com/u2L7kcT.gif" width="60" height="60">\'; \
  52. $codes["boogie"] = \'<img src="http://i.imgur.com/IEKY8eG.gif" width="60" height="60">\'; \
  53. }, 1500);'
  54. ;
  55.  
  56. document.body.appendChild(script);