How to Login to Your Discord Nitro tokens
- heavenswaffles0
- Apr 20
- 1 min read
Updated: 5 days ago
We wanted to share a handy guide on how to log into Discord using a token. We will demonstrate two methods, the easy and quick one with chrome extension, and the more hands on developer way. Here’s a quick rundown of two methods you can use:
First Method (Chrome extension)
For the first method, you need to download this extension for your chrome browser - Discord Token Login, you can find this extension in Chrome Web Store.

After installing the extension, you will see an icon on the top right. Clicking on it will open a concise interface of the extension. All you need to do is enter your token and click "Login".

Second Method (Developer Mode)
Go to discord.com/login
Press F12 (or Ctrl + Shift + I).
Select the Console tab and paste the code below.
Replace the word "TOKEN" with your actual token and press ENTER.
function login(token) {
setInterval(() => {
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
}, 50);
setTimeout(() => {
location.reload();
}, 2500);
}
login('TOKEN');

Thats it! You should now have successfully logged into your nitro token. Feel free to use any one of these two methods.