blob: b569e1a076ac210d87d01b51ded0a8943476eac0 [file] [log] [blame] [edit]
<!DOCTYPE html>
<head>
</head>
<body>
<script>
const PARAMS = new URL(location.href).searchParams;
const TARGET_URL= decodeURIComponent(PARAMS.get('url')) || '';
fetchLater(TARGET_URL, {activateAfter: 0});
if (window.opener) {
window.opener.postMessage("done", "*");
}
</script>
</body>