mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-09 17:19:59 +00:00
13 lines
295 B
JavaScript
13 lines
295 B
JavaScript
"use strict";
|
|
|
|
document.addEventListener("__castMessageResponse", ev => {
|
|
browser.runtime.sendMessage(ev.detail);
|
|
})
|
|
|
|
browser.runtime.onMessage.addListener(message => {
|
|
const event = new CustomEvent("__castMessage", {
|
|
detail: JSON.stringify(message)
|
|
});
|
|
document.dispatchEvent(event);
|
|
});
|