Greasy Fork is available in English.

emoji for DTF-markdown

emoji database

This script should not be not be installed directly. It is a library for other scripts to include with the meta directive // @require https://update.greasyfork.org/scripts/455674/1123016/emoji%20for%20DTF-markdown.js

// ==UserScript==
// @name         emoji for DTF-markdown
// @namespace    https://github.com/TentacleTenticals
// @version      0.0.1
// @description  emoji database
// @author       Tentacle Tenticals
// @license MIT
// ==/UserScript==
 
(function () {
'use strict';

window.emoji = {
  'not animated': {
    anime: {
      kawai: 'https://i.imgur.com/kXIjx5C.jpg',
      neko: 'https://i.imgur.com/I3mRoT0.jpg',
      kawaiDesu: 'https://i.imgur.com/jEQRFMJ.jpg'
    },
    rangers: {
      maloc: 'https://i.imgur.com/ymAqNjU.png',
      fay: 'https://i.imgur.com/IfW6L3a.png',
      pirate: 'https://i.imgur.com/Sy2kHwb.png',
      teo: 'https://i.imgur.com/s312kKi.png',
      fox: 'https://i.imgur.com/dXUUSzi.png'
    }
  },
  'animated': {
    anime: {
      cultist: 'https://i.imgur.com/7AF6Xk1.mp4'
    }
  }
}

})();