TGSscript

Memes

As of 01. 09. 2015. See the latest version.

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 or Violentmonkey 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         TGSscript
// @namespace    TGS's room
// @version      0.10
// @description  Memes
// @grant        none
// @copyright    2015
// @include     *://*.instasynch.com/*
// @include     *://instasynch.com/*
// @include     *://*.instasync.com/*
// @include     *://instasync.com/*
// ==/UserScript==
 
//    { src:"", width:, height:, title:''},
//    { src:"", width:, height:, name:''},
 
 
var emotes = [
{ src:"http://i.imgur.com/2hlSZv7.jpg", width:75, height:85, title:'wowremyourehuge'}, 
{ src:"http://25.media.tumblr.com/tumblr_ljh7li6E8b1qe13iio1_500.gif", width:150, height:150, title:'pentaface'},
{ src:"http://i323.photobucket.com/albums/nn455/Chuckie_081/779286-th_satanic_gif_01.gif", width:70, height:60, title:'stanmind'},
{ src:"http://38.media.tumblr.com/tumblr_maz1crB53J1qjmycco1_500.gif", width:90, height:75, title:'loading'},
{ src:"http://www.ordination.org/hand666.gif", width:50, height:50, title:'666'},
{ src:"http://31.media.tumblr.com/d91cf3c2f9259f68effbcab22b0af5b4/tumblr_nel5010FNP1qajzcfo1_500.gif", width:70, height:70, title:'cross1'},
]; 

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