window.history.replaceState = History.prototype.replaceState;
window.history.pushState = History.prototype.pushState;
или
var f = document.createElement('iframe');
f.onload = function() {
var w = f.contentWindow;
window.history.replaceState = w.history.replaceState;
window.history.pushState = w.history.pushState;
document.body.removeChild(f);
};
f.src = 'javascript:void 0';
f.style.display = 'none';
document.body.appendChild(f);