mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-30 03:08:38 +09:00
14 lines
422 B
JavaScript
14 lines
422 B
JavaScript
self.addEventListener("fetch", function(event) {
|
|
dump("fetch " + event.request.url + "\n");
|
|
if (event.request.url.indexOf("iframe2.html") >= 0) {
|
|
var body =
|
|
"<script>" +
|
|
"window.parent.postMessage({" +
|
|
"source: 'iframe', status: 'swresponse'" +
|
|
"}, '*');" +
|
|
"</script>";
|
|
event.respondWith(new Response(body, {
|
|
headers: {'Content-Type': 'text/html'}
|
|
}));
|
|
}
|
|
});
|