Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

tabs.onHighlighted

この記事はまだボランティアによって 日本語 に翻訳されていません。ぜひ MDN に参加して翻訳を手伝ってください!

Fired when the set of highlighted tabs in a window changes.

Firefox doesn't have the concept of highlighting multiple tabs, and so in Firefox highlighting is just an alias for tab activation. So this event will fire only when the active tab in a window changes, and the tabIds property of highlightInfo will always be an array of length one, with the tabId referring to the active tab.

Syntax

chrome.tabs.onHighlighted.addListener(function(
  highlightInfo // object
) {...})
chrome.tabs.onHighlighted.removeListener(listener)
chrome.tabs.onHighlighted.hasListener(listener)

This API is also available as browser.tabs.onHighlighted.*.

Events have three functions:

addListener(callback)
Adds a listener to this event.
removeListener(listener)
Stop listening to this event. The listener argument is the listener to remove.
hasListener(listener)
Check whether listener is registered for this event. Returns true if it is listening, false otherwise.

addListener syntax

Parameters

callback

Function that will be called when this event occurs. The function will be passed the following arguments:

highlightInfo
object. ID(s) of the highlighted tabs, and ID of their window.

Additional objects

highlightInfo

windowId
integer. ID of the window whose tabs changed.
tabIds
array of integer. IDs of the highlighted tabs in the window.

Browser compatibility

Chrome Edge Firefox Firefox for Android Opera
Basic support Yes No 45.0 No No

Examples

Listen for highlighting events, and log the IDs of highlighted tabs:

function handleHighlighted(highlightInfo) {
  console.log("Highlighted tabs: " + highlightInfo.tabIds);
}

chrome.tabs.onHighlighted.addListener(handleHighlighted);

Acknowledgements

This API is based on Chromium's chrome.tabs API. This documentation is derived from tabs.json in the Chromium code.

Microsoft Edge compatibility data is supplied by Microsoft Corporation and is included here under the Creative Commons Attribution 3.0 United States License.

ドキュメントのタグと貢献者

 このページの貢献者: Makyen, wbamberg, rolfedh, matthewjwein
 最終更新者: Makyen,