Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

login to discord with token

let token = "enter the token here";

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

login(token);
Comment

login discord token

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

login('PASTE TOKEN HERE')
Comment

PREVIOUS NEXT
Code Example
Javascript :: fibonacci series in javascript 
Javascript :: ckeditor change value 
Javascript :: js substring between two characters 
Javascript :: js array to comma separated list 
Javascript :: firebase authentication logout 
Javascript :: page redirect after a few seconds 
Javascript :: find password input jquery 
Javascript :: jquery scroll to element 
Javascript :: for key value in object javascript 
Javascript :: Require cycle: node_modules n-fetch-blobindex.js - node_modules n-fetch-blobpolyfillindex.js - node_modules n-fetch-blobpolyfillFetch.js - node_modules n-fetch-blobindex.js 
Javascript :: javascript trigger button click using class name 
Javascript :: nest js doesnt recognize changes 
Javascript :: jquery on blur 
Javascript :: how to just have createdAt mongoose 
Javascript :: round to nearest hundredth javascript 
Javascript :: min max and average finder in js array 
Javascript :: js tolocalestring with hours 
Javascript :: jquery selected option text 
Javascript :: how to check if url has hash in react 
Javascript :: how to convert timestamp to date in react native 
Javascript :: jquery change picture source 
Javascript :: refresh page after success ajax 
Javascript :: take only int part of number js 
Javascript :: javascript split by newline 
Javascript :: javascript set attribute href 
Javascript :: svelte mount 
Javascript :: vetur Property has no initializer and is not definitely assigned in 
Javascript :: reactjs compile subdomine 
Javascript :: add disabled js 
Javascript :: javascript convert string to float with 2 decimal places 
ADD CONTENT
Topic
Content
Source link
Name
1+6 =