NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name FIMFiction Emote Extender: Background Ponies // @namespace ffemoteextender // @description Adds additional emotes to fimfiction.net. // @include http*://www.fimfiction.net/* // @include http*://fimfiction.net/* // @grant none // @require https://raw.github.com/KrazyTheFox/Fimfiction-Emote-API/master/emoteAPI.js // @version 1.1 // ==/UserScript== $(document).ready(run()); function run() { addEmote("http://i.imgur.com/daovbYJ.png", "amethyststar", "BKGR", "Background", 1); addEmote("http://i.imgur.com/DIcSMJB.png", "applecobbler", "BKGR", "Background", 1); addEmote("http://i.imgur.com/3l7msbL.png", "bonbon", "BKGR", "Background", 1); addEmote("http://i.imgur.com/lwe8vLW.png", "cherryberrychill", "BKGR", "Background", 1); addEmote("http://i.imgur.com/y0otCkK.png", "cherryberrygross", "BKGR", "Background", 1); addEmote("http://i.imgur.com/6HakbEq.png", "daisy", "BKGR", "Background", 1); addEmote("http://i.imgur.com/ThSUc7n.png", "lemonhearts", "BKGR", "Background", 1); addEmote("http://i.imgur.com/2VOtamy.png", "lyrashock", "BKGR", "Background", 1); addEmote("http://i.imgur.com/lD46DsF.png", "medley", "BKGR", "Background", 1); addEmote("http://i.imgur.com/kAazV1a.png", "merrymayyay", "BKGR", "Background", 1); addEmote("http://i.imgur.com/sVsiqFJ.png", "merrymay10", "BKGR", "Background", 1); addEmote("http://i.imgur.com/EN5DU3K.png", "minuettewhat", "BKGR", "Background", 1); addEmote("http://i.imgur.com/nzhafSb.png", "raindrops", "BKGR", "Background", 1); addEmote("http://i.imgur.com/kHtlVEa.png", "redheartangry", "BKGR", "Background", 1); addEmote("http://i.imgur.com/azsncCi.png", "shoeshine", "BKGR", "Background", 1); addEmote("http://i.imgur.com/3LKZ8nQ.png", "twinkleshine", "BKGR", "Background", 1); }