extension.sendRequest()
Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
Warning: This method has been deprecated. Use runtime.sendMessage
instead.
Sends a request to other listeners within the extension. Similar to runtime.connect
, but only sends a request with an optional response. The extension.onRequest
event fires in each page of the extension.
Syntax
chrome.extension.sendRequest(
extensionId, // optional string
request, // any
(response) => {/* … */} // optional function
)
This API is also available as browser.extension.sendRequest()
in a version that returns a promise.
Parameters
extensionId
Optional-
string
. The extension ID of the extension you want to connect to. If omitted, default is your own extension. request
-
any
. responseCallback
Optional-
function
. The function is passed these arguments:response
-
any
. The JSON response object sent by the handler of the request. If an error occurs while connecting to the extension, the callback will be called with no arguments andruntime.lastError
will be set to the error message.
Browser compatibility
BCD tables only load in the browser
Note: This API is based on Chromium's chrome.extension
API. This documentation is derived from extension.json
in the Chromium code.