Przeglądaj źródła

init Slack_emojione

isundil 7 lat temu
rodzic
commit
f5d955ee47
1 zmienionych plików z 18 dodań i 0 usunięć
  1. 18 0
      Slack_emojione.js

+ 18 - 0
Slack_emojione.js

@@ -0,0 +1,18 @@
+// ==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);
+})();