WereEmotes

Memes

  1. // ==UserScript==
  2. // @name WereEmotes
  3. // @namespace Unoeme's Room
  4. // @version 1.1.2
  5. // @description Memes
  6. // @grant none
  7. // @copyright 2015
  8. // @include *://*.instasynch.com/*
  9. // @include *://instasynch.com/*
  10. // @include *://*.instasync.com/*
  11. // @include *://instasync.com/*
  12. // @match *://*.instasync.com/r/*
  13. // @match *://instasync.com/r/*
  14. // @author wereyouthere
  15. // ==/UserScript==
  16. // { src:"", width:, height:, title:''},
  17. // { src:"", width:, height:, name:''},
  18. var emotes = [
  19. { src:"http://i.imgur.com/VaIvcfY.gif", width:112, height:90, title:'noice'},
  20. { src:"http://i.imgur.com/oyI2oVq.jpg", width:80, height:93, title:'triggered'},
  21. { src:"http://i.imgur.com/nQIygbg.png", width:100, height:100, title:'cancer'},
  22. { src:"http://i.imgur.com/mgDnfsM.jpg", width:89, height:122, title:'erect'},
  23. { src:"http://i.imgur.com/5BlHXDA.jpg", width:137, height:92, title:'suicide'},
  24. { src:"http://i.imgur.com/0vI42E7.jpg", width:88, height:88, title:'thirsty'},
  25. { src:"http://i.imgur.com/2AO1LuO.jpg", width:112, height:112, title:'disgusting'},
  26. { src:"http://i.imgur.com/Vyht958.png", width:81, height:81, title:'brutal'},
  27. { src:"http://i.imgur.com/vdFEsr7.gif", width:120, height:67, title:'whatareyoudoing'},
  28. { src:"http://i.imgur.com/4cVqGWO.gif", width:123, height:86, title:'chuckle'},
  29. { src:"http://i.imgur.com/8XUam7p.jpg", width:125, height:83, title:'edgy'},
  30. { src:"http://i.imgur.com/POyxN1Q.png", width:79, height:75, title:'youtried'},
  31. { src:"http://i.imgur.com/AoBToLx.jpg", width:100, height:100, title:'intense'},
  32. { src:"http://i.imgur.com/j9IuYwE.jpg", width:117, height:106, title:'whoputyouontheplanet'},
  33. { src:"http://i.imgur.com/BNjoJj2.gif", width:88, height:49, title:'10outof10'},
  34. { src:"http://i.imgur.com/rmaxNOk.jpg", width:87, height:74, title:'gold'},
  35. { src:"http://i.imgur.com/k7Vhbtc.jpg", width:100, height:54, title:'doubt'},
  36. { src:"http://i.imgur.com/Ky4C3WR.gif", width:75, height:125, title:'mlady'},
  37. { src:"http://i.imgur.com/z2vCZpP.jpg", width:125, height:93, title:'shutup'},
  38. { src:"http://i.imgur.com/snEEwx4.jpg", width:129, height:97, title:'nasty'},
  39. { src:"http://i.imgur.com/kGD0Hxj.jpg", width:113, height:111, title:'okaythen'},
  40. { src:"http://i.imgur.com/w7vkmk8.jpg", width:106, height:105, title:'butwhy'},
  41. { src:"http://i.imgur.com/4YDKb9d.jpg", width:90, height:68, title:'boo'},
  42. { src:"http://i.imgur.com/lcIeAtG.gif", width:105, height:78, title:'no'},
  43. { src:"http://i.imgur.com/XUGNTPY.gif", width:103, height:87, title:'orgasm'},
  44. { src:"http://i.imgur.com/aUhq8te.jpg", width:130, height:106, title:'dissapointment'},
  45. { src:"http://i.imgur.com/f6SJPGZ.jpg", width:105, height:78, title:'sillywilly'},
  46. { src:"http://i.imgur.com/6t51S5c.jpg", width:100, height:78, title:'what'},
  47. { src:"http://i.imgur.com/Qvqiqcn.png", width:100, height:100, title:'alright'},
  48. { src:"http://i.imgur.com/z7VZb2s.jpg", width:90, height:68, title:'hue'},
  49. { src:"http://i.imgur.com/MPOTDaA.gif", width:93, height:52, title:'hifive'},
  50. { src:"http://i.imgur.com/xFOZ4ma.gif", width:120, height:67, title:'rekt'},
  51. { src:"http://i.imgur.com/bBk4ZWe.png", width:100, height:100, title:'topkek'},
  52. ];
  53. function addEmotes(){
  54. emotes.forEach(function(emote){
  55. window.$codes[emote.title || emote.name] = $('<img>', emote)[0].outerHTML;
  56. });
  57. }
  58. function main(){
  59. if(!window.$codes || Object.keys(window.$codes).length === 0){
  60. setTimeout(main, 75);
  61. }else{
  62. addEmotes();
  63. }
  64. }
  65. if (window.document.readyState === 'complete') {
  66. main();
  67. } else {
  68. window.addEventListener('load', main, false);
  69. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址