InstaEmotes

New maymays for you to love! Done by Child_of_Feel (MoF) :^)

当前为 2015-01-08 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name InstaEmotes
  3. // @namespace http://use.i.E.your.homepage/
  4. // @version 8.1
  5. // @description New maymays for you to love! Done by Child_of_Feel (MoF) :^)
  6. // @match http://instasynch.com/*
  7. // @grant none
  8. // @copyright 2015
  9. // ==/UserScript==
  10.  
  11. //oldLoadUserlist = window.loadUserlist; (work with this later)
  12. //{ src:"", width:, height:, title:''},
  13.  
  14. var oldOnConnected = window.global.onConnected,
  15. emotes = [
  16. { src:"http://i.imgur.com/RpznRYJ.gif", width:40, height:45, title:'yee'},
  17. { src:"http://i.imgur.com/niahcKl.gif", width:45, height:35, title:'eey'},
  18. { src:"http://i.imgur.com/NiMJaW6.png", width:40, height:45, title:'kappa'},
  19. { src:"http://i.imgur.com/yzImse8.png", width:20, height:25, title:'mytinysides},
  20. { src:"http://i.imgur.com/RoQiAtP.png", width:43, height:52, title:'expanddong'},
  21. { src:"http://i.imgur.com/8WGVGYh.gif", width:35, height:59, title:'cyrax'},
  22. { src:"http://i.imgur.com/eYfA30K.png", width:49, height:58, title:'heil'},
  23. { src:"http://i.imgur.com/dBYGKLE.png", width:57, height:57, title:'checkem'},
  24. { src:"http://i.imgur.com/7AyGv1a.gif", width:60, height:74, title:'ayylmao'},
  25. { src:"http://i.imgur.com/fNkI3M5.gif", width:40, height:60, title:'gigalien'},
  26. { src:"http://i.imgur.com/RgnpAPE.gif", width:45, height:59, title:'ayylien'},
  27. { src:"http://i.imgur.com/jBji5uc.gif", width:43, height:63, title:'alien2'},
  28. { src:"http://i.imgur.com/nfDwcil.png", width:40, height:56, title:'gookfood'},
  29. { src:"http://i.imgur.com/BeaCBjD.png", width:37, height:39, title:'feek'},
  30. { src:"http://i.imgur.com/BeaCBjD.png", width:37, height:40, title:'feeksbadman'},
  31. { src:"http://i.imgur.com/cHKfWEJ.gif", width:68, height:51, title:'4u'},
  32. { src:"http://i.imgur.com/cHKfWEJ.gif", width:68, height:51, title:'bane'},
  33. { src:"http://i.imgur.com/bFuQDUZ.gif", width:54, height:55, title:'ken'},
  34. { src:"http://i.imgur.com/I1JEBxn.gif", width:53, height:53, title:'fap'},
  35. { src:"http://i.imgur.com/LNkPkIn.png", width:52, height:52, title:'topkek'},
  36. { src:"http://i.imgur.com/UrrFN9c.gif", width:50, height:64, title:'cia'},
  37. { src:"http://i.imgur.com/EWhvuNJ.png", width:60, height:58, title:'whores'},
  38. { src:"http://i.imgur.com/qzKaSUr.png", width:36, height:37, title:'333'},
  39. { src:"http://i.imgur.com/HDCgmfx.jpg", width:32, height:50, title:'ragu'},
  40. { src:"http://i.imgur.com/b3ex5cx.png", width:42, height:49, title:'pull'},
  41. { src:"http://i.imgur.com/b3ex5cx.png", width:42, height:49, title:'riptheskin'},
  42. { src:"http://i.imgur.com/YM5gtsJ.png", width:99, height:118, title:'myfuckingsides'},
  43. { src:"http://i.imgur.com/EEwcTXx.gif", width:130, height:66, title:'movie4chan'},
  44. { src:"http://i.imgur.com/oDLeCCu.gif", width:65, height:60, title:'iamthesun'},
  45. { src:"http://i.imgur.com/GI19OKs.png", width:41, height:45, title:'sanic2'},
  46. { src:"http://i.imgur.com/Wwk7Ce2.jpg", width:41, height:45, title:'haruka'},
  47. { src:"http://i.imgur.com/wAVQL4D.gif", width:60, height:47, title:'wop'},
  48. { src:"http://i.imgur.com/4wunBBM.png", width:60, height:52, title:'slut'},
  49. { src:"http://i.imgur.com/e7agwHG.jpg", width:60, height:59, title:'gojira'},
  50. { src:"http://i.imgur.com/f1ECbQw.png", width:60, height:59, title:':^)'},
  51. { src:"http://i.imgur.com/kXXQOwq.png", width:40, height:56, title:'modabuse'},
  52. { src:"http://i.imgur.com/MkYjmDf.gif", width:60, height:25, title:'( ͡° ͜ʖ ͡°)'},
  53. { src:"http://i.imgur.com/zR8xP2G.png", width:39, height:39, title:'feelsmadman'},
  54. { src:"http://i.imgur.com/zR8xP2G.png", width:39, height:39, title:'feelsmad'},
  55. { src:"http://i.imgur.com/sdhMkvZ.png", width:40, height:56, title:'cofe'},
  56. { src:"http://i.imgur.com/eUt9Jdj.png", width:50, height:64, title:'dank'},
  57. { src:"http://i.imgur.com/tIoQzQX.png", width:34, height:45, title:'yuropoor'}
  58.  
  59. ];
  60.  
  61. function addEmotes(){
  62. for(var i = 0; i < emotes.length; i += 1){
  63. var parameter = emotes[i];
  64. window.$codes[parameter.title] = $('<img>', parameter)[0].outerHTML;
  65. }
  66. }
  67.  
  68. //load emotes everytime we connect to a room
  69. //makes sure emotes work even after going to the frontpage and back
  70. window.global.onConnected = function () {
  71. oldOnConnected();
  72. addEmotes();
  73. };
  74. //check if we are already connected and the script just loaded slow
  75. if(typeof(window.userInfo) !== 'undefined' && window.userInfo !== null){
  76. addEmotes();
  77. }