Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
tianyeeT committed Jun 21, 2024
1 parent 7f1426a commit 6623848
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions files/en-us/mozilla/add-ons/webextensions/api/tabs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Many tab operations use a Tab `id`. Tab `id`s are guaranteed to be unique to a s
- {{WebExtAPIRef("tabs.getCurrent()")}}
- : Gets information about the tab that this script is running in, as a [`tabs.Tab`](/en-US/docs/Mozilla/Add-ons/WebExtensions/API/tabs/Tab) object.
- {{WebExtAPIRef("tabs.getSelected()")}} {{deprecated_inline}}
- : Gets the tab that is selected in the specified window. **Deprecated: use [`tabs.query({active: true})`](/en-US/docs/Mozilla/Add-ons/WebExtensions/API/tabs/query) instead.**
- : Gets the tab that is selected in the specified window. **Deprecated**: use [`tabs.query({active: true})`](/en-US/docs/Mozilla/Add-ons/WebExtensions/API/tabs/query) instead.
- {{WebExtAPIRef("tabs.getZoom()")}}
- : Gets the current zoom factor of the specified tab.
- {{WebExtAPIRef("tabs.getZoomSettings()")}}
Expand Down Expand Up @@ -131,15 +131,15 @@ Many tab operations use a Tab `id`. Tab `id`s are guaranteed to be unique to a s
- {{WebExtAPIRef("tabs.onActivated")}}
- : Fires when the active tab in a window changes. Note that the tab's URL may not be set at the time this event fired.
- {{WebExtAPIRef("tabs.onActiveChanged")}} {{deprecated_inline}}
- : Fires when the selected tab in a window changes. **Deprecated:** use {{WebExtAPIRef("tabs.onActivated")}} instead.
- : Fires when the selected tab in a window changes. **Deprecated**: use {{WebExtAPIRef("tabs.onActivated")}} instead.
- {{WebExtAPIRef("tabs.onAttached")}}
- : Fired when a tab is attached to a window, for example because it was moved between windows.
- {{WebExtAPIRef("tabs.onCreated")}}
- : Fired when a tab is created. Note that the tab's URL may not be set at the time this event fired.
- {{WebExtAPIRef("tabs.onDetached")}}
- : Fired when a tab is detached from a window, for example because it is being moved between windows.
- {{WebExtAPIRef("tabs.onHighlightChanged")}} {{deprecated_inline}}
- : Fired when the highlighted or selected tabs in a window change. **Deprecated:** use {{WebExtAPIRef("tabs.onHighlighted")}} instead.
- : Fired when the highlighted or selected tabs in a window change. **Deprecated**: use {{WebExtAPIRef("tabs.onHighlighted")}} instead.
- {{WebExtAPIRef("tabs.onHighlighted")}}
- : Fired when the highlighted or selected tabs in a window change.
- {{WebExtAPIRef("tabs.onMoved")}}
Expand All @@ -149,7 +149,7 @@ Many tab operations use a Tab `id`. Tab `id`s are guaranteed to be unique to a s
- {{WebExtAPIRef("tabs.onReplaced")}}
- : Fired when a tab is replaced with another tab due to prerendering.
- {{WebExtAPIRef("tabs.onSelectionChanged")}} {{deprecated_inline}}
- : Fires when the selected tab in a window changes. **Deprecated:** use {{WebExtAPIRef("tabs.onActivated")}} instead.
- : Fires when the selected tab in a window changes. **Deprecated**: use {{WebExtAPIRef("tabs.onActivated")}} instead.
- {{WebExtAPIRef("tabs.onUpdated")}}
- : Fired when a tab is updated.
- {{WebExtAPIRef("tabs.onZoomChange")}}
Expand Down

0 comments on commit 6623848

Please sign in to comment.