// ==UserScript==
// @name Tuvaremotes Z
// @namespace Tuvaro
// @version 3.33
// @description New maymays
// @grant none
// @copyright 2016
// @include *://*.instasync.com/r/*
// @include *://instasync.com/r/*
// @match *://*.instasync.com/r/*
// @match *://instasync.com/r/*
// ==/UserScript==
// { src:"", width:, height:, title:''},
// { src:"", width:, height:, name:''},
var emotes = [
{ src:'http://dl.dropboxusercontent.com/u/13049328/robotnik.png', width:64, height:64, title:'peace' },
{ src:'http://dl.dropboxusercontent.com/u/13049328/lepointy.gif', width:64, height:64, title:'pointy' },
{ src:'http://dl.dropboxusercontent.com/u/13049328/rapetime2.png', width:120, height:96, title:'rapehd' },
{ src:'http://i.imgur.com/MCEZvBi.jpg', width:120, height:96, title:'forhim' },
{ src:'http://i.imgur.com/4aGWEjk.jpg', width:80, height:70, title:'howdareyou' },
{ src:'http://dl.dropboxusercontent.com/u/13049328/1414518384612.png', width:80, height:64, title:'harold' },
{ src:'http://dl.dropboxusercontent.com/u/13049328/oil.png', width:64, height:64, title:'oil' },
{ src:'http://dl.dropboxusercontent.com/u/13049328/tuvaremotes/123jew.jpg', width:87, height:76, title:'123jew' },
{ src:'http://dl.dropboxusercontent.com/u/13049328/6ff.gif', width:160, height:120, title:'getout' },
{ src:'http://dl.dropboxusercontent.com/u/13049328/1367921949649.gif', width:86, height:86, title:'hotdogs' },
{ src:'http://dl.dropboxusercontent.com/u/13049328/diebronyscum.gif', width:96, height:54, title:'brony' },
{ src:'http://dl.dropboxusercontent.com/u/13049328/eggbaby.jpg', width:64, height:64, title:'eggbaby' }
];
function addEmotes(){
emotes.forEach(function(emote){
window.$codes[emote.title || emote.name] = $('<img>', emote)[0].outerHTML;
});
}
function main(){
if(!window.$codes || Object.keys(window.$codes).length === 0){
setTimeout(main, 75);
}else{
addEmotes();
}
}
if (window.document.readyState === 'complete') {
main();
} else {
window.addEventListener('load', main, false);
}