Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<script>
fetch("intercept-this").then(function(r) {
if (!r.ok) {
return "FAIL";
}
return r.text();
}).then(function(body) {
parent.postMessage(body, '*');
});
</script>