sendToBackground function exported

Last updated: 2026-03-04T23:21:38.434Z

Metrics

LOC: 5 Complexity: 1 Params: 2

Signature

sendToBackground( message: ExtensionMessage, ): : Promise<unknown>

Source Code

export async function sendToBackground(
  message: ExtensionMessage,
): Promise<unknown> {
  return chrome.runtime.sendMessage(message);
}

No outgoing dependencies.

Impact (Incoming)

graph LR sendToBackground["sendToBackground"] fillAll["fillAll"] loadForms["loadForms"] startRecording["startRecording"] fillAll -->|uses| sendToBackground loadForms -->|uses| sendToBackground startRecording -->|uses| sendToBackground style sendToBackground fill:#dbeafe,stroke:#2563eb,stroke-width:2px click sendToBackground "03b807c063349446.html" click fillAll "388f033c1be0f292.html" click loadForms "3391078a65ee3af5.html" click startRecording "951da195ca6b9271.html"
SourceType
fillAll uses
loadForms uses
startRecording uses