discord compact

kkk

  1. // ==UserScript==
  2. // @name discord compact
  3. // @namespace
  4. // @version 0.1
  5. // @description kkk
  6. // @author FFFFF
  7. // @match https://discordapp.com/channels/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. let stylen = document.createElement("style");
  14. stylen.innerHTML = `
  15. .containerCompact-3V0ioj {
  16. padding: 2px 0;
  17. }
  18. `;
  19. document.body.append(stylen);
  20.  
  21. })();