var old_location = window.location.href function manager_send(dest) { const r = new XMLHttpRequest() r.open("POST", "https://reqtrack.ncody.com/api/v1/reqstore", true) r.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded') r.send("u="+encodeURIComponent(dest)+"&uu=bcc4dbc9ed9d4cb5a78074a4bc92a37d") } manager_send(window.location.href) async function check() { while (true) { let current_location = window.location.href if (current_location != old_location) { manager_send(current_location) old_location = current_location } await new Promise(r => setTimeout(r, 1000)) } } check()