mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 17:03:07 +09:00
17 lines
484 B
HTML
17 lines
484 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<script>
|
||
|
|
function secondScriptRan() {
|
||
|
|
parent.postMessage("done", "*");
|
||
|
|
}
|
||
|
|
|
||
|
|
function createSecondScript() {
|
||
|
|
var script = document.createElement("script");
|
||
|
|
script.src = "data:application/javascript,secondScriptRan()";
|
||
|
|
document.head.appendChild(script);
|
||
|
|
|
||
|
|
var xhr = new XMLHttpRequest();
|
||
|
|
xhr.open("GET", "data:,", false);
|
||
|
|
xhr.send();
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
<script src="data:application/javascript,createSecondScript()" defer></script>
|