mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 07:17:32 +09:00
11 lines
213 B
HTML
11 lines
213 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<script>
|
||
|
|
fetch("intercept-this").then(function(r) {
|
||
|
|
if (!r.ok) {
|
||
|
|
return "FAIL";
|
||
|
|
}
|
||
|
|
return r.text();
|
||
|
|
}).then(function(body) {
|
||
|
|
parent.postMessage(body, '*');
|
||
|
|
});
|
||
|
|
</script>
|