Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[zh-cn]: update the translation of Plugin introduction #25213

Merged
merged 2 commits into from
Dec 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 21 additions & 18 deletions files/zh-cn/web/api/plugin/index.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,37 @@
---
title: Plugin
slug: Web/API/Plugin
l10n:
sourceCommit: 802b6063046dffb7634d2138aadcd92cb22ed40c
---

> **警告:** **已废弃**
> 该特性已经从 HTML5.2 标准中删除,虽然一些浏览器目前仍然支持它,但也许会在未来的某个时间停止支持,请尽量不要使用该特性。
{{APIRef("HTML DOM")}}{{Deprecated_Header}}

{{ApiRef("HTML DOM")}}

插件接口提供有关浏览器[插件](/zh-CN/docs/Mozilla/Add-ons/Plugins)的信息。
`Plugin` 接口提供了关于浏览器插件的信息。

> [!NOTE]
> 在最新版本的浏览器中插件对象本身的属性不可枚举
> 在最新的浏览器版本中,`Plugin` 对象的自有属性不再可枚举

## 属性
## 实例属性

| 名称 | 描述 | 返回值类型 | 兼容性 |
| --------------------------------- | ----------------------------------- | ------------------------ | -------------------------------- |
| {{domxref("Plugin.description")}} | 一个人类可读的插件描述。 **只读。** | {{domxref("DOMString")}} | DOM 0 |
| {{domxref("Plugin.filename")}} | 插件文件名。**只读。** | {{domxref("DOMString")}} | DOM 0 |
| {{domxref("Plugin.name")}} | 插件名。**只读。** | {{domxref("DOMString")}} | DOM 0 |
| {{domxref("Plugin.version")}} | 插件版本号字符串。**只读。** | {{domxref("DOMString")}} | Gecko browsers only (Firefox 4+) |
- {{domxref("Plugin.description")}} {{ReadOnlyInline}} {{Deprecated_Inline}}
- : 插件的人类可读的描述。
- {{domxref("Plugin.filename")}} {{ReadOnlyInline}} {{Deprecated_Inline}}
- : 插件文件的文件名。
- {{domxref("Plugin.name")}} {{ReadOnlyInline}} {{Deprecated_Inline}}
- : 插件的名称。

## 方法
## 实例方法

- {{domxref("Plugin.item")}}
- : 返回支持的 MIME 类型的索引号
- {{domxref("Plugin.namedItem")}}
- : 返回支持的 MIME 类型。
- {{domxref("Plugin.item")}} {{Deprecated_Inline}}
- : 根据支持的类型列表中的索引号,返回支持的内容类型的 MIME 类型
- {{domxref("Plugin.namedItem")}} {{Deprecated_Inline}}
- : 返回支持项的 MIME 类型。

## 规范

{{Specifications}}

## 浏览器兼容性

{{Compat}}
Loading