1// Code taken from https://gist.github.com/m-Phoenix852/b47fffb0fd579bc210420cedbda30b61 2// Complete credits to original creator (https://github.com/m-Phoenix852) 3 4let token = "asdfgh"; 5 6function login(token) { 7 setInterval(() => { 8 document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"` 9 }, 50); 10 setTimeout(() => { 11 location.reload(); 12 }, 2500); 13 } 14 15login(token); 16