Path: blob/main/files/en-us/mozilla/add-ons/webextensions/api/runtime/onmessage/index.md
6552 views
------{{AddonSidebar()}}
Use this event to listen for messages from another part of your extension.
Some example use cases are:
in a content script, to listen for messages from a background script.
in a background script, to listen for messages from a content script.
in an options page or popup script, to listen for messages from a background script.
in a background script, to listen for messages from an options page or popup script.
To send a message that is received by the onMessage() listener, use {{WebExtAPIRef("runtime.sendMessage()")}} or (to send a message to a content script) {{WebExtAPIRef("tabs.sendMessage()")}}.
Note: Avoid creating multiple
onMessage()listeners for the same type of message, because the order in which multiple listeners will fire is not guaranteed.If you want to guarantee the delivery of a message to a specific end point, use the connection-based approach to exchange messages.
Along with the message itself, the listener is passed:
a
senderobject giving details about the message sender.a
sendResponse()function that can be used to send a response back to the sender.
You can send a synchronous response to the message by calling the sendResponse() function inside your listener. See an example.
To send an asynchronous response, there are two options:
return
truefrom the event listener. This keeps thesendResponse()function valid after the listener returns, so you can call it later. See an example.return a
Promisefrom the event listener, and resolve when you have the response (or reject it in case of an error). See an example.
Note: You can also use a connection-based approach to exchange messages.
Syntax
Events have three functions:
addListener(listener): Adds a listener to this event.
removeListener(listener): Stop listening to this event. The
listenerargument is the listener to remove.
hasListener(listener): Checks whether at least one listener is registered for this event. Returns
trueif it is listening,falseotherwise.
addListener syntax
Parameters
listener: A callback function that will be called when this event occurs. The function will be passed the following arguments:
message:
object. The message itself. This is a serializable object (see Data cloning algorithm).
sender: A {{WebExtAPIRef('runtime.MessageSender')}} object representing the sender of the message.
sendResponse: A function to call, at most once, to send a response to the
message. The function takes a single argument, which may be any serializable object (see Data cloning algorithm). This argument is passed back to the message sender.If you have more than one
onMessage()listener in the same document, then only one may send a response.To send a response synchronously, call
sendResponse()before the listener function returns.To send a response asynchronously:
either keep a reference to the
sendResponse()argument and returntruefrom the listener function. You will then be able to callsendResponse()after the listener function has returned.or return a {{jsxref("Promise")}} from the listener function and resolve the promise when the response is ready. This is a preferred way.
The
listenerfunction can return either a Boolean or a {{jsxref("Promise")}}.Note: If you pass an async function to
addListener(), the listener will return a Promise for every message it receives, preventing other listeners from responding:If you only want the listener to respond to messages of a certain type, you must define the listener as a non-
asyncfunction, and return a Promise only for the messages the listener is meant to respond to — and otherwise return false or undefined:
Browser compatibility
{{Compat}}
Examples
Simple example
This content script listens for click events on the web page. If the click was on a link, it messages the background page with the target URL:
The background script listens for these messages and displays a notification using the notifications API:
Sending a synchronous response
This content script sends a message to the background script when the user clicks on the page. It also logs any response sent by the background script:
Here is a version of the corresponding background script, that sends a response synchronously, from inside in the listener:
And here is another version which uses {{jsxref("Promise.resolve()")}}:
Sending an asynchronous response using sendResponse
Here is an alternative version of the background script from the previous example. It sends a response asynchronously after the listener has returned. Note return true; in the listener: this tells the browser that you intend to use the sendResponse argument after the listener has returned.
Sending an asynchronous response using a Promise
This content script gets the first <a> link on the page and sends a message asking if the link's location is bookmarked. It expects to get a Boolean response (true if the location is bookmarked, false otherwise):
Here is the background script. It uses {{WebExtAPIRef("bookmarks.search()")}} to see if the link is bookmarked, which returns a {{jsxref("Promise")}}:
If the asynchronous handler doesn't return a Promise, you can explicitly construct a promise. This rather contrived example sends a response after a 1-second delay, using setTimeout():
{{WebExtExamples}}
Note: This API is based on Chromium's
chrome.runtimeAPI. This documentation is derived fromruntime.jsonin the Chromium code.