Match patterns are a way to specify groups of URLs: a match pattern matches a specific set of URLs. They are for extensions using WebExtensions APIs in a few places, most notably to specify which documents to load content scripts into, and to specify which URLs to add webRequest
listeners to.
APIs that use match patterns usually accept a list of match patterns, and will perform the appropriate action if the URL matches any of the patterns. See, for example, the content_scripts
key in manifest.json.
Match pattern structure
All match patterns are specified as strings. Apart from the special "<all_urls>" pattern, match patterns consist of three parts: scheme, host, and path. The scheme and host are separated by "://".
<scheme>://<host><path>
scheme
The scheme component may take one of two forms:
Form | Matches |
---|---|
"*" | Only "http" and "https". |
One of "http", "https", "file", "ftp", "app". | Only the given scheme. |
host
The host component may take one of three forms:
Form | Matches |
---|---|
"*" | Any host. |
"*." followed by part of the hostname. | The given host and any of its subdomains. |
A complete hostname, without wildcards. | Only the given host. |
host is optional only if the scheme is "file".
Note that the wildcard may only appear at the start.
path
The path component must begin with a "/".
After that, it may subsequently contain any combination of the "*" wildcard and any of the characters that are allowed in URL paths. Unlike host, the path component may contain the "*" wildcard in the middle or at the end, and the "*" wildcard may appear more than once.
<all_urls>
The special value "<all_urls>" matches all URLs under any of the supported schemes: that is, "http", "https", "file", "ftp", "app".
Examples
Pattern | Example matches | Example non-matches |
---|---|---|
Match all URLs. |
|
|
Match all HTTP and HTTPS URLs that are hosted at "mozilla.org" or one of its subdomains. |
|
|
Match all HTTP and HTTPS URLs that are hosted at exactly "mozilla.org/". |
|
|
Match only "ftp://mozilla.org/". |
ftp://mozilla.org |
|
Match HTTPS URLs on any host, whose path is "path". |
|
|
Match HTTPS URLs on any host, whose path is "path/". |
|
|
Match HTTPS URLs only at "mozilla.org", with any path. |
|
|
Match only this URL. |
https://mozilla.org/a/b/c/ |
Anything else. |
Match HTTPS URLs hosted on "mozilla.org", whose path contains a component "b" somewhere in the middle. |
|
|
Match any FILE URL whose path begins with "blah". |
|
file:///bleh/ (unmatched path) |
Invalid match patterns
Invalid pattern | Reason |
---|---|
resource://path/ |
Unsupported scheme. |
https://mozilla.org |
No path. |
https://mozilla.*.org/ |
"*" in host must be at the start. |
https://*zilla.org/ |
"*" in host must be the only character or be followed by ".". |
http*://mozilla.org/ |
"*" in scheme must be the only character. |
file://* |
Empty path: this should be "file:///* ". |
Testing match patterns
When writing extensions, you don't generally work with match patterns directly: usually you pass a match pattern string into an API, and the API constructs a match pattern and uses it to test URLs. However, if you're trying to work out which match pattern to use, or debugging a problem with one, it can be useful to be able to create and test match patterns directly. This section explains how to do this.
First, open the developer tool settings and check the setting marked "Enable browser chrome and add-on debugging toolboxes":
Next, open the "Browser Console":
This gives you a command line that you can use to execute privileged JavaScript in Firefox.
Because code running in the Browser Console has system privileges, any time you use it to run code, you need to understand exactly what the code is doing. That includes the code samples in this article.
Now paste this code into the command line and press enter:
Cu.import("resource://gre/modules/MatchPattern.jsm"); Cu.import("resource://gre/modules/BrowserUtils.jsm");
This does two things:
- imports "MatchPattern.jsm": this is the system module that implements match patterns. Specifically, the module contains a constructor for
MatchPattern
objects.MatchPattern
objects define a function calledmatches()
, that takes a URI and returnstrue
orfalse
. - imports "BrowserUtils.jsm": this includes a function
makeURI()
, that converts a string into annsIURI
object.nsIURI
is the type thatmatches()
expects to receive.
Now you can construct MatchPattern
objects, construct URIs, and check whether the URIs match:
var match = new MatchPattern("*://mozilla.org/"); var uri = BrowserUtils.makeURI("https://mozilla.org/"); match.matches(uri); // < true uri = BrowserUtils.makeURI("https://mozilla.org/path"); match.matches(uri); // < false
Converting Match Patterns to Regular Expressions
All match patterns can be representing by regular expressions. Regular expressions can be be specified when a WebExtension API or configuration file (e.g., manifest.json) calls for a match pattern. This code converts a match pattern to a regular expression:
/** * Transforms a valid match pattern into a regular expression * which matches all URLs included by that pattern. * * @param {string} pattern The pattern to transform. * @return {RegExp} The pattern's equivalent as a RegExp. * @throws {TypeError} If the pattern is not a valid MatchPattern */ // matches all valid match patterns (except '<all_urls>') // and extracts [ , scheme, host, path, ] const matchPattern = (/^(?:(\*|http|https|file|ftp|app):\/\/(\*|(?:\*\.)?[^\/\*]+|)\/(.*))$/i); function matchPatternToRegExp(pattern) { if (pattern === '<all_urls>') { return (/^(?:https?|file|ftp|app):\/\//); } const match = matchPattern.exec(pattern); if (!match) { throw new TypeError(`"${ pattern }" is not a valid MatchPattern`); } const [ , scheme, host, path, ] = match; return new RegExp('^(?:' + (scheme === '*' ? 'https?' : escape(scheme)) +':\/\/' + (host === '*' ? '[^\/]+?' : escape(host).replace(/^\\\*\\./g, '(?:[^\/]+?.)?')) + (path ? '\/'+ escape(path).replace(/\\\*/g, '.*') : '\/?') +')$'); }