Filters URLs for various criteria. If any of the given criteria match, then the whole filter matches.
All criteria are case sensitive.
Type
Values of this type are objects. They contain the following properties:
hostContains
Optionalstring
. Matches if the hostname of the URL contains the given string.- To test whether a hostname component starts with "foo", use
".foo"
. This matches "www.foobar.com" and "foo.com", because an implicit dot is added at the beginning of the hostname. - To test whether a hostname component ends with "foo", use
"foo."
. - To test whether a hostname component exactly matches "foo", use
".foo."
.
However, note that these last two patterns will not match the last component of the hostname, because no implicit dot is added at the end of the hostname. So for example,
"org."
will match "https://borg.com" but not "https://example.org". To match these patterns, usehostSuffix
.- To test whether a hostname component starts with "foo", use
hostEquals
Optionalstring
. Matches if the hostname of the URL is equal to a specified string.hostPrefix
Optionalstring
. Matches if the hostname of the URL starts with a specified string.hostSuffix
Optionalstring
. Matches if the hostname of the URL ends with a specified string.pathContains
Optionalstring
. Matches if the path segment of the URL contains a specified string.pathEquals
Optionalstring
. Matches if the path segment of the URL is equal to a specified string.pathPrefix
Optionalstring
. Matches if the path segment of the URL starts with a specified string.pathSuffix
Optionalstring
. Matches if the path segment of the URL ends with a specified string.queryContains
Optionalstring
. Matches if the query segment of the URL contains a specified string.queryEquals
Optionalstring
. Matches if the query segment of the URL is equal to a specified string.queryPrefix
Optionalstring
. Matches if the query segment of the URL starts with a specified string.querySuffix
Optionalstring
. Matches if the query segment of the URL ends with a specified string.urlContains
Optionalstring
. Matches if the URL (without fragment identifier) contains a specified string. Port numbers are stripped from the URL if they match the default port number.urlEquals
Optionalstring
. Matches if the URL (without fragment identifier) is equal to a specified string. Port numbers are stripped from the URL if they match the default port number.urlMatches
Optionalstring
. Matches if the URL (without fragment identifier) matches a specified regular expression. Port numbers are stripped from the URL if they match the default port number.originAndPathMatches
Optionalstring
. Matches if the URL without query segment and fragment identifier matches a specified regular expression. Port numbers are stripped from the URL if they match the default port number.urlPrefix
Optionalstring
. Matches if the URL (without fragment identifier) starts with a specified string. Port numbers are stripped from the URL if they match the default port number.- For example:
"https://developer"
matches "https://developer.mozilla.org/" and "https://developers.facebook.com/". urlSuffix
Optionalstring
. Matches if the URL (without fragment identifier) ends with a specified string. Port numbers are stripped from the URL if they match the default port number. Note that an implicit forward slash "/" is added after the host, so"com/"
matches "https://example.com", but"com"
does not.schemes
Optionalarray
of
. Matches if the scheme of the URL is equal to any of the schemes specified in the array. Because schemes are always converted to lowercase, this should always be given in lowercase or it will never match.string
- For example:
["https"]
will match only HTTPS URLs. ports
Optionalarray
of
or(integer
array
ofinteger
- For example:
[80, 443, [1000, 1200]]
matches all requests on ports 80, 443, and in the range 1000-1200.
Browser compatibility
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Chrome | Edge | Firefox | Firefox for Android | Opera | |
---|---|---|---|---|---|
Basic support | Yes | Yes | 50.0 | 50.0 | 33 |
This API is based on Chromium's chrome.events
API. This documentation is derived from events.json
in the Chromium code.
Microsoft Edge compatibility data is supplied by Microsoft Corporation and is included here under the Creative Commons Attribution 3.0 United States License.
// Copyright 2015 The Chromium Authors. All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.