You could do an ajax call.
That way, you would be able to populate the POST array yourself through the ajax 'data: ' parameter
var params = {
url: window.location.pathname,
time: new Date().getTime(),
};
$.ajax({
method: "POST",
url: "your/script.php",
data: params
});