Skip to content

Commit

Permalink
Update index.md
Browse files Browse the repository at this point in the history
  • Loading branch information
PassionPenguin authored Dec 30, 2024
1 parent 01d1302 commit 7ea16c4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ l10n:

{{AddonSidebar}}

当页面操作图标被点击时触发。如果页面操作有一个弹出窗口,则此事件不会触发
当页面操作图标被点击时触发。如果页面操作有弹窗,则该事件将不会被触发

要定义右键单击操作,请使用 {{WebExtAPIRef('contextMenus')}} API(使用 `page_action` {{WebExtAPIRef('contextMenus/ContextType', 'context type', '', 'nocode')}})。

Expand Down Expand Up @@ -43,17 +43,17 @@ browser.pageAction.onClicked.hasListener(listener)
- : 包含有关点击的信息的对象。

- `modifiers`
- : `array`点击时激活的键盘修饰符,可以是 `Shift``Alt``Command``Ctrl``MacCtrl` 中的一个或多个。
- : `array`点击页面操作按钮时使用的键盘修饰符,可以是 `Shift``Alt``Command``Ctrl``MacCtrl` 中的一个或多个。
- `button`
- : `integer`。指示用于点击页面操作图标的按钮:`0` 表示左键单击或不与鼠标相关的点击例如键盘点击,`1` 表示中键或滚轮点击。请注意,此处并不支持右键单击,因为 Firefox 在触发此事件之前会消耗该点击以显示上下文菜单
- : `integer`。指示用于点击页面操作图标的按钮:`0` 表示左键单击或不与鼠标相关的点击例如键盘点击`1` 表示中键或滚轮点击。请注意,此处并不支持右键单击,因为 Firefox 在触发此事件之前会消耗右键单击以显示上下文菜单

## 浏览器兼容性

{{Compat}}

## 示例

以下示例演示了如何在用户单击页面操作时隐藏该操作并将活动标签页导航到<https://giphy.com/explore/cat>”:
以下示例演示了如何在用户单击页面操作时隐藏该页面操作,并将活动标签页导航到<https://giphy.com/explore/cat>”:

```js
let catGifs = "https://giphy.com/explore/cat";
Expand Down

0 comments on commit 7ea16c4

Please sign in to comment.