// ==UserScript== // @name Slack_emojione // @namespace http://git.knacki.info/ // @version 0.1 // @description Fuck slack emojis // @author isundil // @match https://*.slack.com/* // @grant none // ==/UserScript== (function() { 'use strict'; var s=document.createElement("style"); s.innerHTML='span.emoji-outer{'+ 'background-image:url("https://github.com/iamcal/emoji-data/blob/master/sheet_emojione_20.png?raw=true")!important;'+ '}'; document.head.appendChild(s); })();