Discord set top bar height

Set discord top bar height to 10px to save screen space

// ==UserScript==
// @name         Discord set top bar height
// @namespace    http://tampermonkey.net/
// @version      2025-03-27
// @description  Set discord top bar height to 10px to save screen space
// @author       Glease
// @match        https://discord.com/channels/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=discord.com
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    window.setTimeout(function() {
        var style = document.createElement('style');
        style.type = 'text/css';
        style.innerHTML = ':root { --custom-app-top-bar-height: 10px; }';
        document.getElementsByTagName('head')[0].appendChild(style);
    }, 1000)
    // Your code here...
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址