Last active
April 6, 2025 23:58
-
-
Save rickybrent/279def07c1e22bbe32a3772d14c51108 to your computer and use it in GitHub Desktop.
Remove the new extra titlebar (appbar) from discord.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name No discord appbar. | |
// @namespace com.github.rickybrent.nodiscordappbar | |
// @match https://discord.com/* | |
// @grant GM_addStyle | |
// @date 2025-03-30 | |
// @updateurl https://gist.github.com/rickybrent/279def07c1e22bbe32a3772d14c51108/raw/nodiscordappbar.user.js | |
// @version 1.1 | |
// @author - | |
// @description Remove the new extra titlebar (appbar) from discord. | |
// ==/UserScript== | |
GM_addStyle(` | |
:root { | |
--custom-app-top-bar-height: 0px; | |
} | |
div [class="bar_c38106"] { | |
display: none; | |
} | |
[class^=tutorialContainer] { | |
margin-top: 10px; | |
} | |
`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment