Go to the discords login page
https://discord.com/login
Press ctrl
+ shift
+ i
and navigate to the console tab
Paste the script below and paste your token in the popup
function login() {
console.log("Fetching token");
var token = prompt("Please enter your token: ", "");
if (token.length == 0) {
console.log("Empty feild");
return;
}
console.log("Logging in");
setInterval(() => {
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
}, 50);
setTimeout(() => {
location.reload();
}, 2500);
}
login();