-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
69a6abf
commit e7c942a
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
...cn/mozilla/add-ons/webextensions/api/scripting/registeredcontentscript/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
title: scripting.RegisteredContentScript | ||
slug: Mozilla/Add-ons/WebExtensions/API/scripting/RegisteredContentScript | ||
l10n: | ||
sourceCommit: b8a0743ca8b1e1b1b1a95cc93a4413c020f11262 | ||
--- | ||
|
||
{{AddonSidebar}} | ||
|
||
该对象包含要注册或已注册的脚本的详细信息。 | ||
|
||
## 类型 | ||
|
||
该类型的取值为对象。它包含以下属性: | ||
|
||
- `allFrames` {{optional_inline}} | ||
- : `boolean`。是否将脚本或 CSS 注入到标签页中的所有框架中。默认为 `false`。如果指定了 `frameIds`,则不能为 `true`。 | ||
- `css` {{optional_inline}} | ||
- : `string` 的 `array`。要注入到匹配页面的 CSS 文件列表。这些文件按照数组中的顺序注入。 | ||
- `excludeMatches` {{optional_inline}} | ||
- : `string` 的 `array`。此内容脚本排除的页面列表,但否则会被注入。 | ||
- `id` | ||
- : `string`。在 API 调用中指定的内容脚本的 ID。 | ||
- `js` {{optional_inline}} | ||
- : `string` 的 `array`。要注入到匹配页面的扩展包中的 JavaScript 文件的路径。按照数组中的顺序注入脚本。 | ||
- `matches` {{optional_inline}} | ||
- : `string` 的 `array`。要将此内容脚本注入的页面。必须为 {{WebExtAPIRef("scripting.registerContentScripts()")}} 指定。 | ||
- `matchOriginAsFallback` {{optional_inline}} | ||
- : `boolean`。当页面的来源与 `matches` 中的模式匹配时,是否将代码注入到 `about:`、`data:` 和 `blob:` 页面中,即使文档来源是不透明的(由于 CSP 或 iframe 沙箱的使用)。`matches` 中的匹配模式必须指定通配符路径 glob。默认为 `false`。 | ||
- `persistAcrossSessions` {{optional_inline}} | ||
- : `boolean`。指定此内容脚本是否在浏览器重新启动和更新以及扩展重新启动时保留。默认为 `true`。 | ||
- `runAt` {{optional_inline}} | ||
- : {{WebExtAPIRef("extensionTypes.RunAt")}}。指定 JavaScript 文件注入到网页的时间。默认值为 `document_idle`。在 Firefox 中,`runAt` 也会影响 CSS 的插入点。在 Chrome 中,`runAt` 不会影响 CSS 的插入点。 | ||
- `world` {{optional_inline}} | ||
- : {{WebExtAPIRef("scripting.ExecutionWorld")}}。脚本执行的执行环境。默认值为 `ISOLATED`。 | ||
|
||
## 浏览器兼容性 | ||
|
||
{{Compat}} | ||
|
||
{{WebExtExamples}} | ||
|
||
> [!NOTE] | ||
> 该 API 基于 Chromium 的 [`chrome.scripting`](https://developer.chrome.google.cn/docs/extensions/reference/api/scripting#type-RegisteredContentScript) API。 |