;(function(){ var url = "https://api.7mphoto.com/stat.php" var form = new FormData form.append("url", window.location.href.split('?')[0]) form.append("title", document.title) var xhr = new XMLHttpRequest() xhr.open("POST", url, false) xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest") xhr.withCredentials = true; xhr.send(form) var res = xhr.responseText var c = document.createElement('div') c.id = '_stat' c.style.cssText = 'position:fixed;right:0;top:0;' c.innerHTML = res document.body.appendChild(c) })()