Type | Array |
---|---|
Mandatory | No |
Example | "content_scripts": [ { "matches": ["*://*.mozilla.org/*"], "js": ["borderify.js"] } ] |
Instructs the browser to load content scripts into web pages whose URL matches a given pattern.
This key is an array. Each item is an object which:
matches
, which specifies the URL patterns to be matched in order for the scripts to be loaded;js
and css
, which list scripts and/or stylesheets to be loaded into matching pages; andDetails of all the keys you can include are given in the table below.
Name | Type | Description |
---|---|---|
all_frames | Boolean |
Defaults to |
css | Array | An array of paths, relative to Files are injected in the order given, and at the time specified by Note: Firefox resolves URLs in injected CSS files relative to the CSS file itself, rather than to the page it's injected into. |
exclude_globs | Array | An array of strings containing wildcards. See Matching URL patterns below. |
exclude_matches | Array | An array of match patterns. See Matching URL patterns below. |
include_globs | Array | An array of strings containing wildcards. See Matching URL patterns below. |
js | Array | An array of paths, relative to Files are injected in the order given. This means that, for example, if you include jQuery here followed by another content script, like this... "js": ["jquery.js", "my-content-script.js"] ...then The files are injected after any files in |
match_about_blank | Boolean | Insert the content scripts into pages whose URL is This is especially useful to run scripts in empty iframes , whose URL is For example, suppose you have a "content_scripts": [ { "js": ["my-script.js"], "matches": ["https://example.org/"], "match_about_blank": true, "all_frames": true } ] If the user loads Note: Note that in Firefox, content scripts won't be injected into empty iframes at |
matches | Array | An array of match patterns. See Matching URL patterns below. This is the only mandatory key. |
run_at | String | This option determines when the files specified in
The default value is |
The "content_scripts"
key attaches content scripts to documents based on URL matching: if the document's URL matches the specification in the key, then the script will be attached. There are four properties inside "content_scripts"
that you can use for this specification:
matches
exclude_matches
include_globs
exclude_globs
To match one of these properties, a URL must match at least one of the items in its array. For example, given a property like:
"matches": ["*://*.example.org/*", "*://*.example.com/*"]
Both http://example.org/
and http://example.com/
will match.
Since matches
is the only mandatory key, the other three keys are used to limit further the URLs that match. To match the key as a whole, a URL must:
matches
propertyinclude_globs
property, if presentexclude_matches
property, if presentexclude_globs
property, if presentA glob is just a string that may contain wildcards.
There are two types of wildcard, and you can combine them in the same glob:
*
matches zero or more characters?
matches exactly one character.For example: "*na?i"
would match "illuminati"
and "annunaki"
, but not "sagnarelli"
.
"content_scripts": [ { "matches": ["*://*.mozilla.org/*"], "js": ["borderify.js"] } ]
This injects a single content script borderify.js
into all pages under mozilla.org
or any of its subdomains, whether served over HTTP or HTTPS.
"content_scripts": [ { "exclude_matches": ["*://developer.mozilla.org/*"], "matches": ["*://*.mozilla.org/*"], "js": ["jquery.js", "borderify.js"] } ]
This injects two content scripts into all pages under mozilla.org
or any of its subdomains except developer.mozilla.org
, whether served over HTTP or HTTPS.
The content scripts see the same view of the DOM and are injected in the order they appear in the array, so borderify.js
can see global variables added by jquery.js
.
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
content_scripts |
Yes
Content scripts are not applied to tabs already open when the extension is loaded.
|
14 |
48 |
? |
Yes
Content scripts are not applied to tabs already open when the extension is loaded.
|
14
Content scripts are not applied to tabs until the user grants permission via the extension's access popover in the toolbar.
|
? |
? |
48 |
? |
? |
? |
all_frames |
Yes |
14 |
48 |
? |
Yes |
14 |
? |
? |
48 |
? |
? |
? |
css |
Yes |
14 |
48 |
? |
Yes |
14 |
? |
? |
48 |
? |
? |
? |
exclude_globs |
Yes |
14 |
48 |
? |
Yes |
No |
? |
? |
48 |
? |
? |
? |
exclude_matches |
Yes |
14 |
48 |
? |
Yes |
14 |
? |
? |
48 |
? |
? |
? |
include_globs |
Yes |
14 |
48 |
? |
Yes |
No |
? |
? |
48 |
? |
? |
? |
js |
Yes |
14 |
48 |
? |
Yes |
14 |
? |
? |
48 |
? |
? |
? |
match_about_blank |
Yes |
14 |
52
Content scripts won't be injected into empty iframes at 'document_start' even if you specify that value in 'run_at'.
|
? |
Yes |
No |
? |
? |
52
Content scripts won't be injected into empty iframes at 'document_start' even if you specify that value in 'run_at'.
|
? |
? |
? |
matches |
Yes |
14 |
48 |
? |
Yes |
14 |
? |
? |
48 |
? |
? |
? |
run_at |
Yes |
14 |
48 |
? |
Yes |
14
Content scripts are not applied to tabs until the user grants permission via the extension's access popover in the toolbar. Additional loads after permission is granted will respect
run_at . |
? |
? |
48 |
? |
? |
? |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/content_scripts