This type contains information about a tab.
Type
Values of this type are objects. They contain the following properties:
id
Optionalinteger
. The ID of the tab. Tab IDs are unique within a browser session. Under some circumstances a Tab may not be assigned an ID, for example when querying foreign tabs using thesessions
API, in which case a session ID may be present. Tab ID can also be set totabs.TAB_ID_NONE
for apps and devtools windows.index
integer
. The zero-based index of the tab within its window.windowId
integer
. The ID of the window the tab is contained within.openerTabId
Optionalinteger
. The ID of the tab that opened this tab, if any. This property is only present if the opener tab still exists.selected
boolean
. Whether the tab is selected.highlighted
boolean
. Whether the tab is highlighted.active
boolean
. Whether the tab is active in its window. (Does not necessarily mean the window is focused.)pinned
boolean
. Whether the tab is pinned.audible
Optionalboolean
. If the tab is not muted: whether the tab is producing sound. If the tab is muted: whether the tab would be producing sound, if it were not muted.mutedInfo
Optionaltabs.MutedInfo
. Current tab muted state and the reason for the last state change.url
Optionalstring
. The URL the tab is displaying. This property is only present if the extension's manifest includes the"tabs"
permission.title
Optionalstring
. The title of the tab. This property is only present if the extension's manifest includes the"tabs"
permission.favIconUrl
Optionalstring
. The URL of the tab's favicon. This property is only present if the extension's manifest includes the"tabs"
permission. It may also be an empty string if the tab is loading.status
Optionalstring
. Either loading or complete.incognito
boolean
. Whether the tab is in an incognito window.width
Optionalinteger
. The width of the tab in pixels.height
Optionalinteger
. The height of the tab in pixels.sessionId
Optionalstring
. The session ID used to uniquely identify a Tab obtained from thesessions
API.
Browser compatibility
Acknowledgements
This API is based on Chromium's chrome.tabs
API. This documentation is derived from tabs.json
in the Chromium code.
// Copyright 2015 The Chromium Authors. All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.