Animemotes

Emoticons for v4c and other synctube rooms by Bronard

اعتبارا من 04-10-2015. شاهد أحدث إصدار.

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name         Animemotes
// @namespace    *
// @version      1
// @description  Emoticons for v4c and other synctube rooms by Bronard
// @match        *://instasync.com/r/v4c
// @match        *://instasync.com/r/movie4chan
// @match        *://instasync.com/r/*
// @grant        none
// @copyright    2015
// ==/UserScript==
 
//{ src:"", width:, height:, title:''},
 
var emotes = [
   
    { src:"http://i.imgur.com/mKfn1C2.gif", width:50, height:55, title:'smuganime2'},
    { src:"http://i.imgur.com/GJSTjQj.png", width:65, height:88, title:'smuganime3'},
    { src:"http://i.imgur.com/y2nmraG.png", width:88, height:65, title:'smuganime4'},
    { src:"http://i.imgur.com/B4HymvJ.png", width:90, height:65, title:'sadsquid'},
    { src:"http://i.imgur.com/HrBC4jG.gif", width:54, height:53, title:'rikka'},
    { src:"http://i.imgur.com/POu88Pa.png", width:50, height:55, title:'heisabigguyforyou'},
    { src:"http://i.imgur.com/N0r7bdL.png", width:50, height:55, title:'quattro'},
    { src:"http://i.imgur.com/yDrpKH3.png", width:70, height:60, title: 'putin'},
    { src:"http://i.imgur.com/uJrM3u0.png", width:70, height:40, title: 'bigboss'},
    { src:"http://i.imgur.com/vrD45tx.png", width:60, height:60, title: 'yaranaika'},
    { src:"http://i.imgur.com/Imolf.gif", width:50, height:50, title: 'servbot'},
    { src:"http://i.imgur.com/5WGZS.jpg", width:50, height:63, title: 'stepup'},
    { src:"http://i.imgur.com/OOXqit5.png", width:54, height:80, title: 'just'},
    { src:"http://i.imgur.com/7XFNWrl.gif", width:36, height:72, title: 'crono'},
    { src:"http://i.imgur.com/mWAan6J.gif", width:120, height:54, title: 'pew2'},
    { src:"http://i.imgur.com/ZBRuxX6.png", width:53, height:47, title: 'papi'},
    { src:"http://i.imgur.com/WlYMFRt.gif", width:60, height:60, title: 'doit2'},
    { src:"http://i.imgur.com/eIF1R2L.png", width:80, height:60, title: 'doit3'},
    { src:"http://i.imgur.com/pfPLxk6.png", width:70, height:70, title: 'wut2'},
    { src:"http://i.imgur.com/xxO2MrE.png", width:72, height:72, title: 'bikki'},
    { src:"http://i.imgur.com/Q5xWyWh.png", width:61, height:72, title: 'bikki2'},
    { src:"http://i.imgur.com/fQjDEJo.png", width:90, height:40, title: 'garrus'},
    { src:"http://i.imgur.com/GLKVdaG.gif", width:40, height:75, title: 'terry'},
    { src:"http://i.imgur.com/QXzjf7n.gif", width:40, height:40, title: 'kirby2'},
    { src:"http://i.imgur.com/ND4xZaa.gif", width:40, height:40, title: 'kirby3'},
    { src:"http://i.imgur.com/kpYgZz1.gif", width:40, height:40, title: 'kirby4'},
    { src:"http://i.imgur.com/n0fvhXl.gif", width:40, height:40, title: 'kirby5'},
    { src:"http://i.imgur.com/3vBa51P.gif", width:40, height:40, title: 'kirby6'},
    { src:"http://i.imgur.com/TpFDOXv.gif", width:70, height:70, title: 'wario'},
    { src:"http://i.imgur.com/8B0GAY0.gif", width:42, height:57, title: 'chuckle'},
    
    
    
    
    
    
 
    
  
   
       
   
    
    
   
 
    
   
   
    
    
    
    
    ];
 
function addEmotes(){
    for(var i = 0; i < emotes.length; i += 1){
        var parameter = emotes[i];
        window.$codes[parameter.title] = $('<img>', parameter)[0].outerHTML;
        window.$codes[parameter.name] = $('<img>', parameter)[0].outerHTML;
    }
}
 
 function main(){
    addEmotes();
}
 
if (window.document.readyState === 'complete') {
  main();
} else {
  window.addEventListener('load', main, false);
}