mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 18:07:31 +09:00
5 lines
128 B
JavaScript
5 lines
128 B
JavaScript
(new BroadcastChannel('foobar')).onmessage = function(event) {
|
|
event.target.postMessage(event.data);
|
|
}
|
|
|
|
postMessage("READY");
|