// ==UserScript== // @name drs // @namespace https://greasyfork.org/en/scripts/8656-drs // @version 0.01 // @description shit // @match *://instasync.com/r/doris // @match *://instasync.com/r/* // @grant none // @copyright 2015 // @downloadURL none // ==/UserScript== //{ src:"", width:, height:, title:''}, var emotes = [ { src:"http://i.imgur.com/TpGoRBc.gif", width:41, height:60, title:'mako'}, { src:"http://i.imgur.com/0MAPnef.gif", width:40, height:60, title:'mako2'}, { src:"http://i.imgur.com/qc8OJnz.gif", width:22, height:59, title:'ringu'}, { src:"", width:50, height:49, title:''}, { src:"", width:50, height:49, title:''}, ]; function addEmotes(){ for(var i = 0; i < emotes.length; i += 1){ var parameter = emotes[i]; window.$codes[parameter.title] = $('', parameter)[0].outerHTML; window.$codes[parameter.name] = $('', parameter)[0].outerHTML; } } function main(){ addEmotes(); } if (window.document.readyState === 'complete') { main(); } else { window.addEventListener('load', main, false); }