Skip to content

Instantly share code, notes, and snippets.

@rickybrent
Last active December 23, 2025 03:57
Show Gist options
  • Select an option

  • Save rickybrent/279def07c1e22bbe32a3772d14c51108 to your computer and use it in GitHub Desktop.

Select an option

Save rickybrent/279def07c1e22bbe32a3772d14c51108 to your computer and use it in GitHub Desktop.
Remove the new extra titlebar (appbar) from discord.
// ==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;
}
`);
@nfox18212
Copy link

This is very helpful, but can you add instructions on how to use this? Is this a plugin with something like Vencord?

@Dovias
Copy link

Dovias commented Dec 17, 2025

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.

@rickybrent
Copy link
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