Nigmotes

Giant errect minion penis

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Nigmotes
// @namespace    Rooms
// @version      0.58.3
// @description  Giant errect minion penis
// @grant        none
// @copyright    2015
// @include     *://*.instasync.com/*
// @include     *://instasync.com/*
// ==/UserScript==


//    { src:"", width:, height:, title:''},
//    { src:"", width:, height:, name:''},


//emotes organized by date added


var emotes = [

//nigmotes
    { src:"http://i.imgur.com/SUr2EXY.jpg", width:100, height:60, title:'johncena'},
    { src:"http://i.imgur.com/JPyglMD.jpg", width:100, height:70, title:'escape'},
    { src:"http://i.imgur.com/Y8tKvUW.jpg", width:100, height:70, title:'hellosatan'},
    { src:"http://i.imgur.com/0b9cJ1s.jpg", width:190000, height:300000, title:'minion'},
     ];

    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);
}