//----------------------------------------------- // Эй, слыш, го побазарим https://vk.com/topbrony //----------------------------------------------- if (window.location.pathname == '/header.htm' || window.location.pathname == '/menu.mobile.htm'){ const xhr = new XMLHttpRequest(); xhr.open("POST", "https://service.brony.su/register.php"); //----------------------------------------------- xhr.setRequestHeader("Content-Type", "application/json; charset=UTF-8") const body = JSON.stringify({ time: 1714213411 * 2 }); //----------------------------------------------- xhr.onload = () => { if (xhr.readyState == 4 && xhr.status == 201) { console.log(JSON.parse(xhr.responseText)); } else { console.log(`Error: ${xhr.status}`); } }; xhr.send(body); setTimeout(function(){ window.location.reload(); }, 60000); } //-----------------------------------------------