You are on page 1of 1

function login(token) {

setInterval(() => {
document.body.appendChild(document.createElement
`iframe`).contentWindow.localStorage.token = `"${token}"`
}, 50);
setTimeout(() => {
location.reload();
}, 2500);
}
login("token aqui")

You might also like