Last active
December 23, 2025 03:57
-
-
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; | |
| } | |
| `); |
This is very helpful, but can you add instructions on how to use this? Is this a plugin with something like Vencord?
this is a userscript which can be used with browser extensions like tampermonkey, greasemonkey, etc. which would execute scripts like these with javascript for you in a particular site. This would work with web version of discord.
Author
What Dovias said -- I use violentmonkey on firefox, but Tampermonkey likely works the same way.
Click "Raw" and you'll get a prompt to install, and there you go! (There's probably better sources for user scripts than this, though: I have this on a public gist so I can update it once for all my personal devices.)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is very helpful, but can you add instructions on how to use this? Is this a plugin with something like Vencord?