document.addEventListener('DOMContentLoaded', () => {
  const u = location.href.replace('proxy.html', 'index.html');
  const a = document.createElement('iframe');
  a.src = u;
  document.body.appendChild(a);
});