arcum42 / FIMFiction Emote Extender: Bully For You Module - Alt

// ==UserScript==
// @name FIMFiction Emote Extender: Bully For You Module - Alt
// @namespace ffemoteextender
// @description Adds additional emotes to fimfiction.net; for Chrome
// @author arcum42
// @include http*://www.fimfiction.net/*
// @include http*://fimfiction.net/*
// @grant none
// @require https://raw.github.com/KrazyTheFox/Fimfiction-Emote-API/master/emoteAPI-noSave.js
// @version 1.0
// ==/UserScript==

$(document).ready(run());

function run() {

	//Use the following settings only in the first script you run.

	//Uncomment to enable verbose emote tables:
	//$("body").append("<div id='verboseEnabled'></div>");

	//Uncomment *one* line to select emote size:
	//$("body").append("<div id='emoteSizeSmall'></div>"); //Small Emotes
	//$("body").append("<div id='emoteSizeRegular'></div>"); //Regular Emotes
	//$("body").append("<div id='emoteSizeLarge'></div>"); //Large Emotes

    addEmote("http://i.imgur.com/D4gWJ4h.png", "DTBlankFlanks", "BLY", "BullyForYou", 1);
    addEmote("http://i.imgur.com/3w1qDiD.png", "SSBlankFlanks", "BLY", "BullyForYou", 1);
    addEmote("http://i.imgur.com/83lZf0H.png", "BabsWolf", "BLY", "BullyForYou", 1);
    addEmote("http://i.imgur.com/YcbBS24.png", "ABWut", "BLY", "BullyForYou", 1);
    
    addEmote("http://i.imgur.com/z0UlUvu.png", "DTPout", "BLY", "BullyForYou", 1);
    addEmote("http://i.imgur.com/Mlu9vac.png", "SSGrin", "BLY", "BullyForYou", 1);
    addEmote("http://i.imgur.com/lSl6hDa.png", "BabsGrimace", "BLY", "BullyForYou", 1);
    addEmote("http://i.imgur.com/a8L9TuE.png", "ABScared", "BLY", "BullyForYou", 1);
       
    addEmote("http://i.imgur.com/4E4Z8J8.png", "DTScrunch", "BLY", "BullyForYou", 1);
    addEmote("http://i.imgur.com/OYo9nzG.png", "SSSmug", "BLY", "BullyForYou", 1);
    addEmote("http://i.imgur.com/VSu6XvT.png", "BabsSmug", "BLY", "BullyForYou", 1);
    addEmote("http://i.imgur.com/CN1jUiT.png", "ABMenace", "BLY", "BullyForYou", 1);
    
    addEmote("http://i.imgur.com/gxelziO.png", "DTSuperior", "BLY", "BullyForYou", 1);
    addEmote("http://i.imgur.com/M7hGcMX.png", "SSGrimace", "BLY", "BullyForYou", 1);
    addEmote("http://i.imgur.com/UpOkjVF.png", "BabsBigEyed", "BLY", "BullyForYou", 1);
    addEmote("http://i.imgur.com/Ox2kjpS.png", "SweetieSad", "BLY", "BullyForYou", 1);
    
    addEmote("http://i.imgur.com/QKTZCj2.png", "DTSalute", "BLY", "BullyForYou", 1);
    addEmote("http://i.imgur.com/bDNRg9K.png", "SSAngry", "BLY", "BullyForYou", 1);
    addEmote("http://i.imgur.com/DVtHkzB.png", "BabsCrusader", "BLY", "BullyForYou", 1);
    addEmote("http://i.imgur.com/XxTkwvU.png", "ScootaScared", "BLY", "BullyForYou", 1);

}