webRequest.RequestFilter
An object describing filters to apply to webRequest events.
Type
Values of this type are objects. They contain the following properties:
urls
-
array
ofstring
. An array of match patterns. The listener will only be called for requests whose targets match any of the given patterns. Only requests made using HTTP or HTTPS will trigger events, other protocols (such as data: and file:) supported by pattern matching do not trigger events.view-source:
requests may be matched based on its inner URL. types
Optional-
array
of
. A list of resource types (for example, stylesheets, images, scripts). The listener will only be called for requests for resources which are one of the given types.webRequest.ResourceType
tabId
Optional-
integer
. The listener will only be called for requests from thetab
identified by this ID. windowId
Optional-
integer
. The listener will only be called for requests from thewindow
identified by this ID. incognito
Optional-
boolean
. If provided, requests that do not match the incognito state (true
orfalse
) will be filtered out.
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | ||||||
---|---|---|---|---|---|---|---|
RequestFilter | |||||||
tabId | |||||||
urls | |||||||
view-source | |||||||
windowId |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
- No support
- No support
- See implementation notes.
Note:
This API is based on Chromium's chrome.webRequest
API. This documentation is derived from web_request.json
in the Chromium code.