Discord Token
To get your Discord token, follow the steps bellow:
Manually
Login to Discord on your browser.
Navigate to your browsers developer settings or use the inspect tool.
Head to the tab titled Storage and find the drop down labeled Local Storage.
Toggle the responsive design mode button on.

Then type token into the filter search box. Copy the entire string without the quotation marks and that is your Discord token!

Browser Script
Copy the code below and paste it into the console of your discord browser:
window.webpackChunkdiscord_app.push([
[Math.random()],
{},
req => {
if (!req.c) return;
for (const m of Object.keys(req.c)
.map(x => req.c[x].exports)
.filter(x => x)) {
if (m.default && m.default.getToken !== undefined) {
return copy(m.default.getToken());
}
if (m.getToken !== undefined) {
return copy(m.getToken());
}
}
},
]);
console.log('%cWorked!', 'font-size: 42px');
console.log(`%cYou now have your token copied to your clipboard!`, 'font-size: 20px');
Last updated