A lightweight Chrome Extension to give your Discord friends custom nicknames that persist across servers and DMs.
- Custom Nicknames: Replace any Discord username with a name of your choice.
- Global Toggle: Easily enable or disable all renames with a single switch in the popup.
- Editable List: View, edit, or delete your custom names directly from the popup.
- Live Updates: Changes apply instantly to Discord—no page refresh required.
- Case-Insensitive Matching: Matches usernames regardless of capitalization (e.g.,
darkslayermatchesDarkSlayer). - Hover Reveal: Hover over any renamed user on Discord to see their original username in a tooltip.
- Privacy Focused: All data is stored locally in your browser's
chrome.storage.local.
- Clone or download this repository.
- Open Chrome and navigate to
chrome://extensions/. - Enable Developer mode in the top right corner.
- Click Load unpacked and select the folder containing these files.
- Open the Discord Renamer popup from your browser's extension bar.
- Enter the Exact Username (the one you see on Discord) in the first box.
- Enter the Real Name (your custom nickname) in the second box.
- Click Save Name.
- To edit an existing name, click Edit next to the name in the list, update the fields, and click Update Name.
- Use the toggle at the top to quickly turn all renames on or off.
- Manifest V3: Built using the latest Chrome Extension standards.
- Content Scripts: Uses a
MutationObserverto ensure names are replaced even as Discord dynamically loads new messages or transitions between channels. - Storage: Uses
chrome.storage.localfor fast, persistent data management.