Skip to content

Commit

Permalink
feat: update translation
Browse files Browse the repository at this point in the history
  • Loading branch information
PassionPenguin authored Aug 7, 2024
1 parent e26284c commit 66d670d
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ l10n:
在浏览器操作被启用时返回 `true`

> [!NOTE]
> 该 API 在 Manifest V3 或更高中可用
> 该 API 在 Manifest V3 或更高版本中可用
这是一个返回 [`Promise`](/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Promise) 的异步函数。

## 语法

```js-nolint
let gettingIsEnabled = browser.action.isEnabled(
details // object
details // 对象
)
```

Expand All @@ -29,9 +29,9 @@ let gettingIsEnabled = browser.action.isEnabled(
- : `object`。可选的包含 `tabId``windowId` 用于检查的对象。

- `tabId` {{optional_inline}}
- : `integer`。指定要检查的标签的 id。
- : `integer`,指定要检查的标签页的 id。
- `windowId` {{optional_inline}}
- : `integer`指定要检查的窗口的 id。
- : `integer`指定要检查的窗口的 id。

<!---->

Expand All @@ -52,7 +52,7 @@ browser.action.isEnabled({}).then((result) => {
});
```

检查当前活动标签的启用状态
检查当前活动标签页的启用状态

```js
async function enabledInActiveTab() {
Expand Down

0 comments on commit 66d670d

Please sign in to comment.