kkk
// ==UserScript==
// @name discord compact
// @namespace
// @version 0.1
// @description kkk
// @author FFFFF
// @match https://discordapp.com/channels/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
let stylen = document.createElement("style");
stylen.innerHTML = `
.containerCompact-3V0ioj {
padding: 2px 0;
}
`;
document.body.append(stylen);
})();