Dont Hurt Me
As of
// ==UserScript==
// @name Hobo's Penis
// @namespace Theflyinghobo
// @version 1.05
// @description Dont Hurt Me
// @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://i.imgur.com/fORk0Wt.jpg', width:90, height:80, title:'cwap' },
{ src:'http://i.imgur.com/szkGPF1.jpg', width:50, height:70, title:'bapst' },
{ src:'http://i.imgur.com/jrHDBkf.jpg', width:64, height:64, title:'banana' },
{ src:'http://i.imgur.com/r0VQMa6.jpg', width:96, height:64, title:'haram' },
{ src:'http://i.imgur.com/E4EyvAR.jpg', width:64, height:64, title:'noosepepe' },
{ src:'http://i.imgur.com/Ho7VPAN.jpg', width:64, height:64, title:'sharkpepe' },
{ src:'http://i.imgur.com/caAgvj0.jpg', width:64, height:64, title:'sanicpepe' },
{ src:'http://i.imgur.com/SALMjSA.jpg', width:45, height:60, title:'urkel' },
{ src:'http://i.imgur.com/RBrFjDi.jpg', width:64, height:64, title:'bernie' },
];
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);
}