Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<script>
(async () => {
const response = await fetch("viewport.py");
const body = await response.text();
parent.postMessage(body, "*");
})();
</script>