downloader-extension/background.js

16 lines
285 B
JavaScript
Raw Permalink Normal View History

2026-02-08 10:46:25 -05:00
browser.runtime.onMessage.addListener(async (msg) => {
if (msg.type !== "send") return;
console.log("sending message to", msg.host);
await fetch(msg.host, {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: msg.data
});
return { ok: true };
});