Discord show channel name on right side by hdyzen
Details
Authorhdyzen
LicenseNo License
Categorydiscord
Created
Updated
Size690 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Discord show channel name on right side
@namespace github.com/zenstorage
@version 1.0.0
@description context: https://www.reddit.com/r/userscripts/comments/1ikzpn7/request_im_looking_for_a_script_for_discord_that/
@author hdyzen
==/UserStyle== */
@-moz-document domain("discord.com") {
nav[class*="guilds_"] {
width: 250px;
}
[class^="listItem_"] > div:not([class]) > [data-dnd-name]::before,
[class^="folderIcon_"]::before {
content: attr(data-dnd-name);
position: absolute;
top: 50%;
left: 100%;
translate: 0 -50%;
width: max-content;
color: #fff;
}
[id^="folder-items-"] {
overflow: visible !important;
}
}