CxLLM-SAFARI/Shared (Extension)/Resources/background.js
CxAI Ops 5b384c5baa
Some checks are pending
ci / validate (push) Waiting to run
chore: initial commit (Phase 3 scaffold)
2026-05-16 10:52:05 -05:00

7 lines
223 B
JavaScript

browser.runtime.onMessage.addListener((request, sender, sendResponse) => {
console.log("Received request: ", request);
if (request.greeting === "hello")
return Promise.resolve({ farewell: "goodbye" });
});