mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-20 19:33:08 +09:00
18 lines
608 B
HTML
18 lines
608 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
// HACK: This is not an ideal way to deliver chrome messages
|
|
// to an inner frame content but seems only way that would
|
|
// make `event.source` this (outer frame) window.
|
|
window.onmessage = function(event) {
|
|
var frame = document.querySelector("iframe");
|
|
var content = frame.contentWindow;
|
|
// If message is posted from chrome it has no `event.source`.
|
|
if (event.source === null)
|
|
content.postMessage(event.data, "*");
|
|
};
|
|
</script>
|
|
</head>
|
|
<body style="overflow: hidden"></body>
|
|
</html>
|